Conversation
uv 0.11.0 was released on 2026-03-23. CI picks it up automatically via astral-sh/setup-uv@v7 (latest) and the floating Docker tag, but pyproject.toml pinned ~=0.10.0 which rejects 0.11.0. jira: TRIVIAL risk: low
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1482 +/- ##
===========================================
+ Coverage 0.00% 77.31% +77.31%
===========================================
Files 158 227 +69
Lines 11048 14761 +3713
===========================================
+ Hits 0 11413 +11413
+ Misses 11048 3348 -7700 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
jaceksan
approved these changes
Mar 25, 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.
Summary
Bump uv from 0.10.x to 0.11.x across pyproject.toml, Dockerfile, and pre-commit config.
Root cause
0ebfbad3): uv was pinned to~=0.10.0inpyproject.tomlandghcr.io/astral-sh/uv:0.10in Dockerfileuv 0.11.0was releasedastral-sh/setup-uv@v7(no version pin) and the floating:0.10Docker tag~=0.10.0means>=0.10.0, <0.11.0, so0.11.0is rejected with:Changes
pyproject.toml:required-version = "~=0.10.0"→"~=0.11.0"Dockerfile:FROM ghcr.io/astral-sh/uv:0.10→:0.11.pre-commit-config.yaml:uv-pre-commitrev0.10.0→0.11.0Test plan
jira: TRIVIAL
risk: low