Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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",
Expand Down
Loading