Skip to content

Commit

Permalink
BLD: Fix scipy version in pyproject.toml (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
aresnow1 authored Jul 7, 2023
1 parent db5a8c5 commit 1aafbe0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ requires = [
"wheel",
"oldest-supported-numpy",
"pandas>=1.0.4",
"scipy>=1.4.1",
"scipy==1.4.1; python_version<'3.9' and platform_machine!='aarch64'",
"scipy==1.5.3; python_version<'3.9' and platform_machine=='aarch64'",
"scipy==1.5.4; python_version>='3.9' and python_version<'3.10' and sys_platform=='win32'",
"scipy>=1.4.1; python_version>='3.9' and python_version<'3.10' and sys_platform!='win32'",
"scipy>=1.4.1; python_version>='3.10'",
"cython>=0.29.33",
"requests>=2.4.0",
"cloudpickle>=2.2.1; python_version>='3.11'",
Expand Down

0 comments on commit 1aafbe0

Please sign in to comment.