pyproject: install vendored dependencies from package index#38171
Closed
adeebshihadeh wants to merge 1 commit into
Closed
pyproject: install vendored dependencies from package index#38171adeebshihadeh wants to merge 1 commit into
adeebshihadeh wants to merge 1 commit into
Conversation
The commaai/dependencies wheels are now served from a static PEP 503 index (https://commaai.github.io/dependencies/simple/) backed by GitHub Releases. Pin normal versions against that index instead of installing shim packages from release-* git branches: no more git clones during uv sync, wheels are sha256-pinned in uv.lock, and version bumps are a plain lock update instead of the cache-clean dance. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Contributor
Process replay diff reportReplays driving segments through this PR and compares the behavior to master. ✅ 0 changed, 66 passed, 0 errors |
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.
The commaai/dependencies wheels are now served from a static PEP 503 index backed by GitHub Releases (commaai/dependencies#86): https://commaai.github.io/dependencies/simple/
This swaps the
release-*git-branch shims for normal version pins against that index:uv sync— just a direct, parallel download of the current platform's wheeluv.lock(the shim'ssetup.pydownloaded wheels with no hash verification)uv lock --upgrade-package <pkg>— no moreuv cache cleandance, since index versions are immutable release tags instead of force-pushed branchesThe lock diff is exactly the 19 vendored packages flipping from git sources to the registry; versions are unchanged and the wheel contents are byte-identical to what the shims previously extracted (same release assets). Verified locally with a full
uv sync --all-extrasplus package smoketests.🤖 Generated with Claude Code