diff --git a/pyproject.toml b/pyproject.toml index f5cc3a7..0aa39aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ authors = [ license = { file = "LICENSE.md" } requires-python = ">=3.13" dependencies = [ - "numpy>=2.2.0,<2.4", + "numpy>=2.2.0,<2.5", "numba>=0.61.2" ] keywords = [ diff --git a/requirements.txt b/requirements.txt index 3068ace..8301fc2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -numpy>=2.2.0,<2.4 +numpy>=2.2.0,<2.5 numba>=0.61.2 diff --git a/setup.py b/setup.py index 795d43a..229978d 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ "package": ["py.typed"], }, include_package_data=True, - install_requires=["numpy>=2.2.0,<2.4", "numba>=0.61.2"], + install_requires=["numpy>=2.2.0,<2.5", "numba>=0.61.2"], extras_require={ "cupy": ["cupy>=10.0"], },