chore(deps): bump Python dep floors to latest stable#92
Merged
pratyush618 merged 1 commit intomasterfrom May 1, 2026
Merged
Conversation
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
Raises minimum-supported floors for Python deps in
pyproject.toml. uv resolves the latest within each new floor (lockfile is gitignored, so this is a floor-only change). End users picking Python 3.10+ get the new floors at install time.pytest>=7.0>=8.0pytest-asyncio>=0.21>=0.24pytest-cov>=4.0>=5.0ruff>=0.8>=0.11mypy>=1.13>=1.15fastapi>=0.100.0>=0.110.0pydantic>=2.0>=2.5django>=3.2>=4.2(3.2 EOL April 2024)flask>=2.0>=3.0boto3>=1.20>=1.34google-cloud-storage>=2.0>=2.10maturin(build)>=1.0,<2.0>=1.5,<2.0cloudpickle>=3.0and the unpinned extras (otel, prometheus, sentry, msgpack, encryption) are unchanged.Verification (local)
After
uv lock --upgrade && uv sync --extra dev:uv run ruff check py_src/ tests/— cleanuv run ruff format --check py_src/ tests/— 142 files already formatteduv run mypy py_src/taskito/ tests/python/ --no-incremental— 142 source files, no issuesuv run python -m pytest tests/python/— 465 passed, 9 skipped in 5m18s (9 skips are Windows-only tests, expected)The new floors picked up these notable lockfile bumps along the way: ruff
0.15.6 → 0.15.12, mypy1.19.1 → 1.20.2, pytest9.0.2 → 9.0.3, pydantic2.12.5 → 2.13.3, sentry-sdk2.54.0 → 2.58.0, starlette0.52 → 1.0.0.Test plan