py(deps[dev]) uv 0.12.3 + dev package refresh - #1083
Open
tony wants to merge 2 commits into
Open
Conversation
why: 0.12.3 is the newest uv past the 3-day window this setup applies to package resolution (`exclude-newer` in the uv config, `min-release-age` in .npmrc). Toolchain pins are resolved by mise and are not gated by those settings, but holding the resolver binary itself to the same window keeps one policy rather than two. 0.12.4 (2026-08-13) and 0.12.5 (2026-08-14) are both inside the window and are deliberately skipped. what the release changes here: 0.12.2 adds CPython 3.14.7 and 0.12.3 adds 3.13.15, so the bare `3.14` and `3.13` entries in this file now resolve to those patch releases. The rest of the span is performance work that lands on every resolve: uv.lock parsing got faster for wheel and source-distribution entries, Linux startup initializes the workspace cache before spawning a thread, interpreter discovery no longer reads procfs, and conflict-heavy resolutions avoid materializing range complements. 0.12.2 also stops artifact sizes recorded in cached wheels from breaking older uv versions reading the same cache. - uv - https://github.com/astral-sh/uv/blob/0.12.2/CHANGELOG.md - https://github.com/astral-sh/uv/releases/tag/0.12.2 - https://github.com/astral-sh/uv/blob/0.12.3/CHANGELOG.md - https://github.com/astral-sh/uv/releases/tag/0.12.3
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.
Routine dependency sweep. Two commits, separated so each reverts on its
own.
.tool-versions(uv) uv 0.12.1 -> 0.12.3— 0.12.3 is the newest uvpast the 3-day window this setup applies to package resolution
(
exclude-newerin the uv config,min-release-agein.npmrc).Toolchain pins are resolved by mise and are not gated by those
settings, but holding the resolver binary to the same window keeps one
policy rather than two, which is the rule the previous bump in this
file recorded. 0.12.4 (2026-08-13) and 0.12.5 (2026-08-14) are both
inside the window and are deliberately skipped.
py(deps[dev]) Bump dev packages—uv lock --upgrade, nomanifest changes. Empty body by convention; the lockfile diff is the
report.
Verification
uv run ruff check .,uv run ruff format --check .,uv run mypyand the full pytest suite all pass at the branch tip. Run serially —
the tmux-backed suites in this family contend with each other under
parallel execution.