Skip to content
Closed
Show file tree
Hide file tree
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
18 changes: 9 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ python-multipart = ">=0.0.9,<0.0.32"
redis = "^7.4.0"
apscheduler = "^3.10.0"
httpx = "^0.28.0"
structlog = "^25.5.0"
prometheus-client = "^0.24.1"
structlog = ">=25.5,<27.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Update the pip dependency source alongside Poetry

When the application is built through the default Docker path, this upgrade is ignored: Dockerfile:24-25 installs requirements.txt, which still constrains structlog to >=25.5.0,<26.0.0 at requirements.txt:16. The pip-based CI jobs use that file as well, so they continue testing 25.x while Poetry locks 26.1.0, leaving the production image on the old version and potentially hiding 26.x compatibility regressions. Keep requirements.txt synchronized with this constraint change.

Useful? React with 👍 / 👎.

prometheus-client = ">=0.24.1,<0.27.0"
numpy = "^2.4.3"
openai = "^1.0.0"
asyncpg = "^0.31.0"
Expand Down
Loading