Skip to content

Commit

Permalink
numpy degrade for python 3.7 (#115)
Browse files Browse the repository at this point in the history
* numpy degrade for python 3.7

* Update setup.py

* Update setup.py

* Update requirements.txt

* Update requirements.txt

* Update CHANGELOG.md

* Update CHANGELOG.md

* Update requirements.txt

* Update setup.py

* Update requirements.txt

* Update setup.py

* Update setup.py
  • Loading branch information
mavaylon1 authored Aug 22, 2023
1 parent 086c9bc commit 6c13e14
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Bug fixes
* Fixed error in deploy workflow. @mavaylon1 [#109](https://github.com/hdmf-dev/hdmf-zarr/pull/109)
* Fixed build error for ReadtheDocs by degrading numpy for python 3.7 support. @mavaylon1 [#115](https://github.com/hdmf-dev/hdmf-zarr/pull/115)


## 0.3.0 (July 21, 2023)
Expand Down
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
hdmf==3.5.4
zarr==2.11.0
pynwb==2.3.2
numpy==1.23.5
numcodecs==0.11.0
numpy==1.21; python_version < "3.8"
numpy==1.23; python_version >= "3.8"
numcodecs==0.10.2; python_version < "3.8"
numcodecs==0.11.0; python_version >= "3.8"
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@
reqs = [
'hdmf==3.5.4', # temporary
'zarr>=2.11.0',
'numpy>=1.22, <1.24; python_version>"3.7"',
'numpy<1.22; python_version < "3.8"',
'numpy>=1.22; python_version >= "3.8"',
'numcodecs>=0.9.1',
'numcodecs==0.10.2; python_version < "3.8"',
'numcodecs==0.11.0; python_version >= "3.8"',
'pynwb>=2.3.2',
'setuptools',
]
Expand Down

0 comments on commit 6c13e14

Please sign in to comment.