Update packaging toolchain for Metadata-Version 2.5 wheels - #360
Merged
Conversation
Co-authored-by: hf-kklein <23094997+hf-kklein@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job "check_packaging"
Update packaging toolchain for Metadata-Version 2.5 wheels
Aug 21, 2026
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
check_packagingGitHub Actions job was failing intwine checkbecause the pinned packaging toolchain could not validate wheels emitted withMetadata-Version: 2.5. This updates the packaging dependency pin and lockfile so the packaging workflow can validate current build output again.Root cause
twine==6.2.0rejects the built wheel as an invalid distribution because it does not accept metadata version2.5.Change
twine==6.2.0totwine==7.0.0inpyproject.toml.uv.lockto capture the updated packaging dependency set.Impact