chore: update setup-uv, prek hooks and Python dev dependencies - #179
Merged
Conversation
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PVv1LWaK7pBKshBE18DJzv
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.
What
Routine dependency maintenance:
astral-sh/setup-uvv8.3.2->v9.0.0prek autoupdate:ruff-pre-commitv0.15.21->v0.16.0prek0.4.10->0.4.11,ruff0.15.21->0.16.0,ty0.0.60->0.0.64uv.lockrefresh picks up transitive bumps (annotated-doc,annotated-types,certifi)Notes
setup-uv v9.0.0 is a breaking release only because
prune-cachenow defaults tofalse(upstream decision to reduce load on PyPI). No workflow change is needed — the action is used withenable-cache: trueand no explicitprune-cache, so the new default applies. Effect is a somewhat larger GitHub Actions cache entry.ruff 0.16.0 stabilizes three rules that
select = ["ALL"]now picks up. All three are ignored inlinters/ruff.toml, consistent with existing entries:CPY001missing-copyright-noticeISC004implicit-string-concatenation-in-collectionISC001is already ignoredPLR0917too-many-positional-argumentsPLR0913(too many arguments) is already ignoredThe
ruffhook id is a legacy alias inruff-pre-commitv0.16.0 (it prints "ruff (legacy alias)"), soprek.tomlnow usesruff-check.Verified locally: all prek hooks pass,
mypyandtyclean, 591 tests pass at 100% coverage.