From 88b1cafc96f77dd37eadeac3ada7626558ed261f Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Sun, 8 Sep 2024 12:01:54 -0700 Subject: [PATCH 1/2] Fix numpy version for py39 --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 27716cf5a..c05b1d02a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 From 1411cfbf9071dc841fb9fc7491f6ddcbc32d5558 Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Sun, 8 Sep 2024 12:06:38 -0700 Subject: [PATCH 2/2] Add missing quotes --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c05b1d02a..6d7a17623 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +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; python_version > 3.9 # numpy 2.1+ is not compatible with py3.9 -numpy==2.0.2; python_version == 3.9 +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