-
Notifications
You must be signed in to change notification settings - Fork 110
Feature uv #2113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Feature uv #2113
Changes from all commits
144462e
6cbe7f3
1b678bd
7f0a6e7
253587a
9c75fa8
876f919
e8a9e92
047ea3a
d8c792a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Good integration point; verify toolchain reproducibility
Hooking sync-pylock-toml.sh after requirements regeneration is sensible. Given the script auto-installs uv from PyPI, please confirm your CI runners permit networked tool bootstrapping and that the uv version is pinned to avoid churn in generated pylock.toml.
To verify determinism across lanes:
🏁 Script executed:
Length of output: 443
🏁 Script executed:
Length of output: 1190
Pin
uv
version in the bootstrap step and verify CI accessThe
sync-pylock-toml.sh
script bootstrapsuv
with an unpinnedpip install uv
, which risks variability in the generatedpylock.toml
as newuv
releases come out. To ensure reproducible builds:• Confirm that your CI runners permit networked
pip install uv
during the sync step.• In
scripts/sync-pylock-toml.sh
, pin theuv
version in the install command. For example:Replace
<fixed-version>
with the vetteduv
release used in your last successful run.• (Optional) Document this pinned version in your Makefile or CI configuration, so future updates aren’t applied accidentally without review.
These changes will lock the toolchain and prevent unintended drift in your lockfiles.
🤖 Prompt for AI Agents