chore: refresh onnx-weekly lock pin to unblock CI (expired nightly)#291
Merged
Conversation
The lockfile pinned onnx-weekly 1.20.0.dev20250901, a nightly build that has since been garbage-collected from the package index, so 'poetry install' failed on every CI job before any test ran. Refresh the pin to a currently-available nightly (1.23.0.dev20260706) to unblock CI repo-wide. Lockfile only; pyproject unchanged.
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
Refresh the
onnx-weeklyentry inpoetry.lockfrom the expired1.20.0.dev20250901nightly to a currently-available one (1.23.0.dev20260706).Why
pyproject.tomltracksonnx-weekly = "*"(a nightly channel). The lockfile had pinned1.20.0.dev20250901, and that nightly wheel has since been garbage-collected from the package index. As a resultpoetry installfails on every CI job (alltest-*,core-models,ensemble-presets,stems-and-quality,integration-test) with:This blocks CI on every open PR and any push to main, unrelated to the code in those PRs.
Change
poetry.lockonly —pyproject.tomlis intentionally untouched, so this does not trigger thepublish-to-pypiworkflow and requires no version bump.poetry install -E cpu --dry-run(resolves cleanly, no missing candidates).Note
This is a stop-gap: because the dependency tracks
onnx-weekly = "*", any pinned nightly will eventually expire the same way. A durable fix (pinning a stableonnxrelease, or periodically refreshing the nightly) can be considered separately.@coderabbitai ignore