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

Dependencies: Added support of numpy v2 #4082

Merged
merged 12 commits into from
Apr 9, 2024
Prev Previous commit
Next Next commit
build with numpy instead of old-supported-numpy
  • Loading branch information
t20100 committed Apr 5, 2024
commit dc374a2605ddb934a6d38d684b43cf9fb29474c4
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install --upgrade build setuptools wheel
pip install --upgrade --pre oldest-supported-numpy cython
pip install --upgrade --pre numpy cython

- name: Print python info used for build
run: |
Expand Down
2 changes: 1 addition & 1 deletion ci/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ build_script:
- "pip install %PIP_OPTIONS% --upgrade build"
- "pip install %PIP_OPTIONS% --upgrade setuptools"
- "pip install %PIP_OPTIONS% --upgrade wheel"
- "pip install %PIP_OPTIONS% --upgrade oldest-supported-numpy"
- "pip install %PIP_OPTIONS% --upgrade numpy"
- "pip install %PIP_OPTIONS% --upgrade cython"

# Print Python info
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"wheel",
"setuptools",
"oldest-supported-numpy",
"numpy",
"Cython>=0.29.31"
]
build-backend = "setuptools.build_meta"
Expand Down