Skip to content

Commit

Permalink
Set an upper bound for the Numpy dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
isaksamsten committed Feb 19, 2024
1 parent a6dc755 commit 6238197
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Expand Up @@ -34,8 +34,8 @@ zip_safe = False
include_package_data = True
python_requires = >= 3.8
install_requires =
numpy>=1.19.2; platform_python_implementation == 'PyPy'
numpy>=1.17.3; platform_python_implementation != 'PyPy'
numpy>=1.19.2,<2.0; platform_python_implementation == 'PyPy'
numpy>=1.17.3,<2.0; platform_python_implementation != 'PyPy'
scipy>=1.3.2
scikit-learn>=1.1,<1.4a
packages = find_namespace:
Expand Down

0 comments on commit 6238197

Please sign in to comment.