Skip to content

Commit

Permalink
Fix import error due to Numba support of Numpy 1.24
Browse files Browse the repository at this point in the history
See comments on Numba Support of Numpy 1.24 in #441
  • Loading branch information
martinvonk committed Dec 29, 2022
1 parent 5dd7d62 commit 49d3bfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.ci.txt
@@ -1,4 +1,4 @@
numpy>=1.17
numpy>=1.17, <1.24

matplotlib>=3.1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -37,7 +37,7 @@
'Topic :: Scientific/Engineering :: Hydrology',
],
platforms='Windows, Mac OS-X',
install_requires=['numpy>=1.17',
install_requires=['numpy>=1.17, <1.24',
'matplotlib>=3.1',
'pandas>=1.1',
'scipy>=1.3'],
Expand Down

0 comments on commit 49d3bfb

Please sign in to comment.