fix: harden Python release artifacts - #105
Merged
Merged
Conversation
BartoszBlizniak
force-pushed
the
fix/python-release-artifacts
branch
3 times, most recently
from
August 24, 2026 14:25
51a4f9e to
3ae2c2e
Compare
There was a problem hiding this comment.
Pull request overview
Hardens generated Python release artifacts for Python 3.10+, PEP 517, and conda-forge compatibility.
Changes:
- Adds Python 3.10 packaging metadata and Python 3-only wheels.
- Excludes generated tests and obsolete CI files.
- Builds and validates clean artifacts before publishing.
Reviewed changes
Copilot reviewed 16 out of 16 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
README.md |
Updates the wheel badge to py3. |
.circleci/config.yml |
Tests and deploys with Python 3.10. |
bindings/python/.swagger-codegen-ignore |
Omits obsolete generated test configuration. |
bindings/python/build.sh |
Supplies Python requirements and restores metadata. |
bindings/python/deploy.sh |
Uses PEP 517 and validates artifacts. |
bindings/python/release/pyproject.toml |
Defines the release build backend. |
bindings/python/src/.travis.yml |
Removes obsolete Travis configuration. |
bindings/python/src/LICENSE |
Adds the license to release sources. |
bindings/python/src/README.md |
Documents Python 3.10 support. |
bindings/python/src/pyproject.toml |
Enables PEP 517 builds. |
bindings/python/src/setup.py |
Adds release metadata and excludes tests. |
bindings/python/src/test-requirements.txt |
Removes obsolete Nose dependencies. |
bindings/python/src/tox.ini |
Runs unittest under Python 3. |
bindings/python/templates/README.mustache |
Preserves generated Python documentation. |
bindings/python/templates/setup.mustache |
Defines hardened package metadata. |
bindings/python/templates/tox.mustache |
Generates modern tox configuration. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
BartoszBlizniak
force-pushed
the
fix/python-release-artifacts
branch
from
August 24, 2026 14:55
3ae2c2e to
19ad30a
Compare
BartoszBlizniak
marked this pull request as ready for review
August 24, 2026 15:13
coillteoir
approved these changes
Aug 25, 2026
cloudsmith-iduffy
approved these changes
Aug 25, 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.
Summary
Prepare the Python release artifacts for conda-forge packaging required by cloudsmith-io/cloudsmith-cli#326.
Validation