Skip to content

Commit 1178e0d

Browse files
authored
Fix numpy version for py39 (#1963)
1 parent 44ef205 commit 1178e0d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# pinned dependencies to reproduce an entire development environment to use PyNWB
22
h5py==3.11.0
33
hdmf==3.14.3
4-
numpy==2.1.1
4+
numpy==2.1.1; python_version > "3.9" # numpy 2.1+ is not compatible with py3.9
5+
numpy==2.0.2; python_version == "3.9"
56
pandas==2.2.2
67
python-dateutil==2.9.0.post0

0 commit comments

Comments
 (0)