From 3fc5e062ce2f0d73c8758f160fc0536fdfa414b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 14:32:14 +0000 Subject: [PATCH] chore(deps): update numpy requirement 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.24.0...v2.2.6) --- updated-dependencies: - dependency-name: numpy dependency-version: 2.2.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5f467c6..52d44ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ "requests>=2.34.2,<3.0.0", "tenacity>=9.1.4,<10.0.0", "Pillow>=12.3.0,<13.0.0", - "numpy>=1.24.0,<3.0.0", + "numpy>=2.2.6,<3.0.0", "pydantic>=2.13.4,<3.0.0", "tqdm>=4.66.0,<5.0.0", ] diff --git a/requirements.txt b/requirements.txt index 6e1ad3e..c212295 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ tenacity>=9.1.4,<10.0.0 # download retries (utils.image.download_image) # L3 cross-image consistency fallback (PIL/OpenCV feature overlay) Pillow>=12.3.0,<13.0.0 -numpy>=1.24.0,<3.0.0 +numpy>=2.2.6,<3.0.0 # Haar face compositing needs OpenCV. PIN <5: cv2 5.x removed CascadeClassifier # and the Haar cascades this module relies on; without OpenCV, apply_l3 degrades # gracefully to a no-op (panel returned unchanged), so this is optional at runtime.