From 2749a0cdb839e502f92a1a47bcba031542c6fd9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 07:01:31 +0000 Subject: [PATCH] Update numpy requirement from <2.0.0,>=1.16.2 to >=1.16.2,<3.0.0 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/v1.16.2...v2.0.2) --- updated-dependencies: - dependency-name: numpy dependency-version: 2.0.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements/docs.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/docs.txt b/requirements/docs.txt index 84c91c874..a0b1943a5 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -13,7 +13,7 @@ ipython>=7.2.0, <9.0.0 # required for executing notebooks nbsphinx # pandoc # pandoc==2.9.2.1 # NB: as this is not a Python library, it should be installed manually on the system or via a package manager such as `conda` # alibi_detect dependencies (these are installed on ReadTheDocs so are not mocked) -numpy>=1.16.2, <2.0.0 +numpy>=1.16.2, <3.0.0 pandas>=1.0.0, <3.0.0 matplotlib>=3.0.0, <4.0.0 typing-extensions>=3.7.4.3 diff --git a/setup.py b/setup.py index c8d5218eb..11af90777 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def readme(): # lower bounds based on Debian Stable versions where available install_requires=[ "matplotlib>=3.0.0, <4.0.0", - "numpy>=1.16.2, <2.0.0", + "numpy>=1.16.2, <3.0.0", "pandas>=1.0.0, <3.0.0", "Pillow>=5.4.1, <11.0.0", "opencv-python>=3.2.0, <5.0.0",