Skip to content

Commit

Permalink
Fix numpy version for py39 (#1963)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored Sep 9, 2024
1 parent 44ef205 commit 1178e0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# pinned dependencies to reproduce an entire development environment to use PyNWB
h5py==3.11.0
hdmf==3.14.3
numpy==2.1.1
numpy==2.1.1; python_version > "3.9" # numpy 2.1+ is not compatible with py3.9
numpy==2.0.2; python_version == "3.9"
pandas==2.2.2
python-dateutil==2.9.0.post0

0 comments on commit 1178e0d

Please sign in to comment.