chore(deps-dev): bundle five Python dependency bumps - #3201
Merged
Conversation
Bundles the five open Dependabot bumps into a single change and regenerates uv.lock, which each individual PR left pinned to the old versions: - django-stubs-ext 6.0.6 -> 6.0.7 - pillow-heif 1.3.0 -> 1.4.0 - sentry-sdk 2.63.0 -> 2.65.0 - types-python-dateutil 2.9.0.20260518 -> 2.9.0.20260716 - types-PyYAML 6.0.12.20260408 -> 6.0.12.20260518 Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
|
There was a problem hiding this comment.
Pull request overview
Bundles five existing Dependabot Python dependency bumps into a single update and regenerates uv.lock so the lockfile matches the pinned versions in pyproject.toml.
Changes:
- Bumped five dependencies (
django-stubs-ext,pillow-heif,sentry-sdk,types-python-dateutil,types-PyYAML) inpyproject.toml. - Regenerated
uv.lockto reflect only those version changes (no other resolved-version churn).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
pyproject.toml |
Updates pinned versions for the five targeted dependencies across the relevant dependency groups. |
uv.lock |
Updates the resolved versions + artifact metadata to match the new pins for those same five packages. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Jul 16, 2026
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.



Bundles the five open Dependabot Python bumps into a single PR, and fixes the lockfile drift each of them carries.
What
Supersedes:
The fix
Every one of the five Dependabot PRs bumps the pin in
pyproject.tomlbut leavesuv.lockresolved to the old version, so each would merge with the lock out of sync with the manifest. This PR regeneratesuv.lockalongside the pins.uv lock --checkpasses, and the only versions that move in the lock are the five above — no transitive churn.Validation
All run locally on this branch:
uv lock --check— clean, 125 packages resolved.uv run ruff check .— all checks passed;ruff format --check— 168 files already formatted.mypy— reproduced the CI job (uv pip install --group mypyin a clean venv):Success: no issues found in 168 source files. This is the bump with the most teeth, since three of the five are typing stubs anddjango-stubs-exthas to stay compatible with thedjango-stubs==6.0.5pin.pytest -m "not integration"— 1480 passed.skipifthat silently passes when the library is missing, so I confirmed they actually execute rather than skip:pytest -k "heif or heic"-> 7 passed, 0 skipped, decoding real HEIC input on 1.4.0.settings.pydepends on (sentry_sdk.types.Event/Hint,ignore_logger,init(before_send=...),set_tag) still imports, and thatdjango.setup()drivessentry_sdk.initcleanly on 2.65.0.🤖 Generated with Claude Code