chore(deps): consolidate uv group relock (supersedes #21-#25)#26
Merged
Conversation
…uff) Consolidates the 5 open Dependabot uv PRs (#21-#25) into one relock. Dependabot resolves against public PyPI and rewrites the lock URLs from the Takumi Guard index (pypi.flatt.tech) to files.pythonhosted.org, so CI's `uv sync --locked` (which runs behind Takumi Guard) rejected each PR's lock. Regenerated uv.lock via `uv lock --upgrade-package ...` against the pypi.flatt.tech index, honoring the pinned exclude-newer=2026-07-22. pyproject is unchanged (floors are open ranges). Supersedes #21-#25. Co-Authored-By: Claude Opus 4.8 <[email protected]>
This was referenced Jul 23, 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.
Why
The 5 open Dependabot uv PRs (#21 click, #22 click*, #23 ruff, #24 pyright, #25 hypothesis + coverage) each failed CI with:
Root cause: this repo routes installs through Takumi Guard (
pypi.flatt.tech). Dependabot resolves against public PyPI and rewrites the lock's URLs tofiles.pythonhosted.org, souv sync --locked(running behind the Takumi index) sees the lock as inconsistent and fails. It is not a code problem —mainis green.What
One relock via
uv lock --upgrade-package {click,coverage,hypothesis,pyright,ruff}against thepypi.flatt.techindex, honoring the pinnedexclude-newer = 2026-07-22. Onlyuv.lockchanges; the index URLs stay onpypi.flatt.tech(0 pythonhosted leaks).Resolved: click 8.4.2 · coverage 7.15.2 · hypothesis 6.157.0 · pyright 1.1.411 · ruff 0.15.22.
Supersedes #21, #22, #23, #24, #25.
🤖 Generated with Claude Code