diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 9c6d6a13..444c1329 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -17,7 +17,7 @@ requires = [ "setuptools>=42", "scikit-build", "cmake>=3.21, <5", # Keep in-sync with `CMakeLists.txt` - "numpy>=1.10.0, <2", # Keep in-sync with `setup.py` + "numpy>=1.10.0, <3", # 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 diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 5b18a450..94eaf6f5 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -51,7 +51,7 @@ cmake_install_dir='src/svs', cmake_args = cmake_args, install_requires = [ - "numpy>=1.10.0, <2", # keep in-sync with `pyproject.toml` + "numpy>=1.10.0, <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 ],