Skip to content

Commit

Permalink
Add upper limit scipy versions <1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
juhoinkinen committed Jul 16, 2024
1 parent dc5b5c4 commit 1ac7e4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ requires = [
# is 1.18.5, remove the line when they increase oldest supported Numpy for this platform
"numpy==1.18.5; python_version=='3.8' and platform_machine not in 'arm64|aarch64'",
"oldest-supported-numpy; python_version>'3.8' or platform_machine in 'arm64|aarch64'",
"numpy<2.0; python_version=='3.12'",
"scipy",
"setuptools",
"wheel",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def run(self):

install_requires = [
NUMPY_STR,
'scipy >= 1.7.0',
'scipy >= 1.7.0, <1.14',
'smart_open >= 1.8.1',
]

Expand Down

0 comments on commit 1ac7e4e

Please sign in to comment.