PYTHON-5924 Remove TestPyPI upload from release#2932
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s GitHub Actions workflows to remove the TestPyPI publish step (now failing due to external policy changes) and to compensate by adding local package metadata validation checks to CI.
Changes:
- Remove the “Publish to TestPyPI” step from the release workflow.
- Add
pyproject.tomlvalidation viavalidate-pyproject. - Add package metadata validation via
twine checkon built distributions in the static CI job.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/test-python.yml | Adds validate-pyproject and twine check steps to the static CI job to validate packaging inputs/artifacts. |
| .github/workflows/release-python.yml | Removes the TestPyPI publish step while keeping the PyPI publish step intact. |
sleepyStick
approved these changes
Jul 10, 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.
PYTHON-5924
Changes in this PR
Removes the TestPyPI upload step from the release workflow, which has started failing due to a PyPI policy change. Adds package metadata validation to the static CI job to help cover the gap.
Test Plan
Verified the new checks pass locally; relying on CI for the workflow changes themselves.
Checklist
Checklist for Author
Checklist for Reviewer