Skip to content

Commit

Permalink
Update scipy/numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
vpung authored Aug 6, 2024
1 parent ca1a91b commit 4a17836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ def get_blas_lib_dir(cls):
# Requirements
numpy_requires = [
'numpy<1.20.0; python_version<"3.7"', # setup_requires needs correct version for <3.7
'numpy>=1.19.5; python_version>="3.7"'
'numpy>=1.19.5,<2.0.0; python_version>="3.7"'
]
setup_requires = numpy_requires + [
'pytest-runner'
]
install_requires = numpy_requires + [
'scipy>=1.4.1',
'scipy>=1.4.1,<1.14.0',
'scikit-learn>=0.24.1',
'torch==1.13; python_version<"3.8"',
'torch>=2.0; python_version>="3.8"',
Expand Down

0 comments on commit 4a17836

Please sign in to comment.