Conversation
test uv publish CI failure caused by .whl file appearing last in test.pypi.org file listtest uv publish bug in patch version retrieval
… in test.pypi.org file list The jq filter used `.files[-1].filename` to get the latest published version, but the last file in the list can be a `.whl` rather than a `.tar.gz`. The sed regex only matches `.tar.gz` filenames, so the wheel filename passes through unchanged and bash fails trying to evaluate it as arithmetic. Filter to `.tar.gz` files before picking the last entry.
test uv publish bug in patch version retrievalastral-test-pypa-gh-action publish test bug in patch version retrieval
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 jq filter used
.files[-1].filenameto get the latest published version then uses sed to extract the version from a sdist filename, but the last file in the list can be a wheel rather than an sdist in the middle of an upload. When it's a wheel, the filename passes through unchanged and bash complains trying to evaluate it as arithmetic.e.g.:
Surprisingly, this does not fail the job —
sed -i "s/0.1.0/0.1.$((patch_version + 1))/gfails silently in its subshell, leaving the version as 0.1.0,test.pypi.orgreturns 400 File already exists, and the test succeeds because we useskip-existing: true.