chore(deps): upgrade lerobot to 0.6.0, torch to 2.11.0 - #67
Closed
pham-tuan-binh wants to merge 1 commit into
Closed
chore(deps): upgrade lerobot to 0.6.0, torch to 2.11.0#67pham-tuan-binh wants to merge 1 commit into
pham-tuan-binh wants to merge 1 commit into
Conversation
lerobot 0.6 raises its torch cap from <2.11 to <2.12, so torch moves from 2.10.0 to 2.11.0. This does not clear CVE-2025-3000 (Dependabot alerts #91/#92), which is only patched in torch 2.13.0, above lerobot's cap. The 0.6 upgrade also drops several transitive deps (wandb, xxhash, zipp).
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
Upgrades both Python lockfiles:
python/uv.lock: lerobot 0.5.1 → 0.6.0, torch 2.10.0 → 2.11.0examples/python/so101/uv.lock: same bumpslerobot 0.6 also drops several transitive deps (wandb, xxhash, zipp), which is why the diff shrinks the lockfiles.
Why
Prompted by Dependabot alerts #91 and #92 (CVE-2025-3000, memory corruption in
torch.jit.script, low severity).Note: this PR does not clear the alerts. The CVE is only patched in torch 2.13.0. lerobot 0.6 caps torch at
<2.12, so 2.11.0 is the newest we can lock. The alerts stay open until lerobot lifts its cap. The vulnerable path requires callingtorch.jit.scripton untrusted model code, which portal never does, so exposure is minimal in the meantime.Testing
python/pass