chore(deps): refresh locked dependencies for April 2026#214
Merged
Conversation
Recompile requirements with uv to pick up routine upstream releases and bring the pinned paths in line with running `uv pip compile` from the project root. Runtime (requirements/main.txt): - boto3/botocore: 1.42.61 -> 1.42.92 - charset-normalizer: 3.4.4 -> 3.4.7 - django-stubs-ext: 5.2.9 -> 6.0.3 - djangorestframework: 3.16.1 -> 3.17.1 - gunicorn: 25.1.0 -> 25.3.0 - idna: 3.11 -> 3.12 - numpy: 2.4.2 -> 2.4.4 - packaging: 26.0 -> 26.1 - pandas: 3.0.1 -> 3.0.2 - pydantic: 2.12.5 -> 2.13.3 - pydantic-core: 2.41.5 -> 2.46.3 Development (requirements/dev.txt): - django-debug-toolbar: 6.2.0 -> 6.3.0 - redis: 7.2.1 -> 7.4.0 - requests: 2.33.0 -> 2.33.1 - rich: 14.3.3 -> 15.0.0 - ruff: 0.15.4 -> 0.15.11 Also normalize the `-r` / `-c` reference paths in the compiled files to `requirements/*.in` and `requirements/main.txt`, matching the output of `task dependencies:compute` executed from the repository root. The `[filecache]`, `[binary]` and `[heif]` extras are no longer surfaced by uv in the compiled header; the actual sub-packages (psycopg-binary, pillow-heif) are still pulled in transitively, so the installed set is unchanged.
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
Routine refresh of the compiled
requirements/*.txtlock files produced byuv pip compile. No.infiles were touched — only pinned versions move.Runtime updates (
requirements/main.txt)Development updates (
requirements/dev.txt)Notes
-r/-ccomments in both compiled files now userequirements/<file>paths, matching the output oftask dependencies:computewhen run from the repository root.[filecache],[binary]and[heif]markers no longer appear in the compiled output (newer uv formatting). The transitive sub-packages (psycopg-binary,pillow-heif) are still pulled in, so the installed set is identical.Test plan
task dependencies:computeproduces no further difftask testspassestask code:checkpassestask runboots the site without import errors