Skip to content

Commit

Permalink
Require numpy<1.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Jan 11, 2022
1 parent b5e480b commit 4ab0ce8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Fixes:
* Fixed wrong array size in warnings by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1624

NOTE: AMICI 0.11.23 requires numpy<1.22.0

**Full Changelog**:
https://github.com/AMICI-dev/AMICI/compare/v0.11.22...v0.11.23

Expand Down
8 changes: 4 additions & 4 deletions python/sdist/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ package_dir =
python_requires = >=3.7
install_requires =
sympy>=1.9
numpy>=1.14.5; python_version=='3.7'
numpy>=1.17.5; python_version=='3.8'
numpy>=1.19.3; python_version=='3.9'
numpy>=1.21.4; python_version>='3.10'
numpy>=1.14.5, <1.22.0; python_version=='3.7'
numpy>=1.17.5, <1.22.0; python_version=='3.8'
numpy>=1.19.3, <1.22.0; python_version=='3.9'
numpy>=1.21.4, <1.22.0; python_version>='3.10'
python-libsbml
h5py
pandas
Expand Down

0 comments on commit 4ab0ce8

Please sign in to comment.