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

Update dependency numpy to v2 - abandoned #65

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@

[build-system]
requires = [
"setuptools>=42",
"scikit-build",
"cmake>=3.21", # Keep in-sync with `CMakeLists.txt`
"numpy>=1.10.0, <2", # Keep in-sync with `setup.py`
"archspec>=0.2.0", # Keep in-sync with `setup.py`
"toml>=0.10.2", # Keep in-sync with `setup.py` required for the tests
"setuptools==68.0.0",
"scikit-build==0.18.1",
"cmake==3.27.0", # Keep in-sync with `CMakeLists.txt`
"numpy==2.0.2", # Keep in-sync with `setup.py`
"archspec==0.2.0", # Keep in-sync with `setup.py`
"toml==0.10.2" , # Keep in-sync with `setup.py` required for the tests
#"pybind11", # Installed in CMakeLists.txt
]

Expand Down
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def target(arch):
cmake_install_dir='src/svs',
cmake_args = cmake_args,
install_requires = [
"numpy>=1.10.0, <2", # keep in-sync with `pyproject.toml`
"numpy>=1.16, <3", # keep in-sync with `pyproject.toml`
"archspec>=0.2.0", # keep in-sync with `pyproject.toml`
"toml>=0.10.2", # keep in-sync with `pyproject.toml` required for the tests
],
Expand Down
Loading