From 7b336232999d97689e6a1afb45aa8b94be9ee444 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 16:07:15 +0000 Subject: [PATCH] deps(deps): bump the python-production group with 3 updates Updates the requirements on [mutagen](https://github.com/quodlibet/mutagen), [numpy](https://github.com/numpy/numpy) and [redis](https://github.com/redis/redis-py) to permit the latest version. Updates `mutagen` to 1.48.0 - [Release notes](https://github.com/quodlibet/mutagen/releases) - [Changelog](https://github.com/quodlibet/mutagen/blob/main/NEWS) - [Commits](https://github.com/quodlibet/mutagen/compare/release-1.47.0...release-1.48.0) Updates `numpy` to 2.5.0 - [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.4.6...v2.5.0) Updates `redis` to 8.0.0 - [Release notes](https://github.com/redis/redis-py/releases) - [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES) - [Commits](https://github.com/redis/redis-py/compare/v7.4.1...v8.0.0) --- updated-dependencies: - dependency-name: mutagen dependency-version: 1.48.0 dependency-type: direct:production dependency-group: python-production - dependency-name: numpy dependency-version: 2.5.0 dependency-type: direct:production dependency-group: python-production - dependency-name: redis dependency-version: 8.0.0 dependency-type: direct:production dependency-group: python-production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3586c7a5..1af1b22c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,8 +21,8 @@ dependencies = [ # pinning. The cap confines uv to the vetted 1.85.x line; raise it deliberately. "litellm>=1.85.6,<1.86.0", "lxml>=6.1.1", - "mutagen>=1.47.0", - "numpy>=2.4.6", + "mutagen>=1.48.0", + "numpy>=2.5.0", # v4.1.1 hotfix: saq[postgres] pulls bare `psycopg` (pure-Python), which needs a # libpq backend at import. The v4.1.0 slim image had none (no C ext, no binary # wheel, no system libpq) -> `ImportError: no pq wrapper available` crash-looped @@ -41,7 +41,7 @@ dependencies = [ # Direct dep since Phase 36: dropping `saq[redis]` removes the transitive `redis`, # but `redis.asyncio` is imported directly across the codebase (cache_redis handle, # pipeline counters). Declared explicitly so the import is not a transitive accident. - "redis>=7.4.1,<8.0", + "redis>=8.0.0,<9.0", # Phase 36: postgres extra pulls psycopg[pool]>=3.2.0 for the PostgresQueue broker. "saq[postgres]>=0.26.4", "sqlalchemy>=2.0.51",