From d1739935ad78b30bd8a7625be63e651c8ff1f3ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 01:19:13 +0000 Subject: [PATCH] Update numpy requirement from <2.4,>=2.2.0 to >=2.2.0,<2.5 Updates the requirements on [numpy](https://github.com/numpy/numpy) to permit the latest version. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v2.2.0...v2.4.0) --- updated-dependencies: - dependency-name: numpy dependency-version: 2.4.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"], },