Upgrade all dependencies to latest - #6
Merged
Conversation
Bump every runtime and dev dependency to its current latest release and pin the previously-unpinned dev tools for reproducible builds. Runtime: - fastapi 0.115.6 -> 0.139.2 - uvicorn 0.34.0 -> 0.51.0 - plexapi 4.16.0 -> 4.18.2 - litellm 1.55.9 -> 1.93.0 - python-dotenv 1.0.1 -> 1.2.2 - pydantic 2.10.4 -> 2.13.4 - requests 2.32.3 -> 2.34.2 Dev (now pinned): black 26.5.1, flake8 7.3.0, flake8-pyproject 1.2.4, isort 8.0.1, pylint 4.0.6, pytest 9.1.1, pytest-cov 7.1.0. Applied the reformatting the newer black/isort require so `make all` stays green. No conflicts to resolve. Verified: 21 tests pass, pylint 10.00/10, flake8/black/isort clean, and the production python:3.13-slim Docker image builds and imports cleanly. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
LubergAlexander
force-pushed
the
chore/upgrade-dependencies
branch
from
July 21, 2026 07:14
b532acc to
1dfe113
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps every runtime and dev dependency to its current latest release, as a standalone change (branched off
master, independent of #5).Version changes
Runtime (
requirements.txt)Dev (
requirements-dev.txt) — previously unpinned, now pinned for reproducible builds:black==26.5.1,flake8==7.3.0,flake8-pyproject==1.2.4,isort==8.0.1,pylint==4.0.6,pytest==9.1.1,pytest-cov==7.1.0.Conflicts resolved
The only code impact was formatting: newer
black/isorthave slightly different rules, so a small amount of import-ordering and line-wrapping in the test files was reapplied to keepmake allgreen. No API breakages surfaced.Testing
pylint10.00/10;flake8,black --check,isort --checkclean.python:3.13-slimDocker image builds successfully andapp.main+ all libraries import cleanly inside the container.🤖 Generated with Claude Code