Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Support Numpy 2 #578

Draft
wants to merge 17 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Make pyproject.toml match
  • Loading branch information
aaronreidsmith committed Jul 5, 2024
commit ec20f316506a04e94931ff4516bf9457f0368a2d
17 changes: 5 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
[build-system]
requires = [
"numpy==1.21.2; python_version < '3.10'",
"numpy==1.21.6; python_version == '3.10' and platform_system != 'Windows'",
"numpy==1.22.3; python_version == '3.10' and platform_system == 'Windows'",
"numpy==1.23.2; python_version == '3.11'",
"numpy==1.26.0; python_version == '3.12'",
"numpy==1.21.2; python_version < '3.9'",
"numpy==2.0.0; python_version >= '3.9'",
"scipy==1.3.2; python_version <= '3.8' and platform_machine != 'aarch64'",
"scipy==1.5.3; python_version <= '3.8' and platform_machine == 'aarch64'",
"scipy==1.5.4; python_version == '3.9'",
"scipy==1.7.2; python_version == '3.10'",
"scipy==1.9.3; python_version == '3.11'",
"scipy==1.11.2; python_version == '3.12'",
"statsmodels==0.13.2; python_version <= '3.10'",
"statsmodels==0.13.3; python_version == '3.11'",
"statsmodels==0.14.0; python_version == '3.12'",
"scipy==1.13.0; python_version >= '3.9'",
"statsmodels==0.13.2; python_version <= '3.9'",
"statsmodels==0.14.2; python_version >= '3.10'",
"cython>=0.29,!=0.29.18,!=0.29.31",
"setuptools",
]
Loading