Add/modify files needed for PyPI release#429
Merged
Merged
Conversation
- pyproject.toml: add classifiers, fix description ("electrical" →
"electric"), add Changelog URL; version stays 0.0.0 (tag-based
workflow patches it at release time)
- CHANGELOG.md: add v0.1.0 entry with feature inventory and cairo
known-limitation note
- README.md: add PyPI version badge; add PyPI install section that
documents the cairo caveat
- release.yml: pass --no-sources to uv build so the private cairo git
URL is not accessed during the build and does not appear in the
wheel's dependency metadata
Co-authored-by: Cursor <cursoragent@cursor.com>
alxsmith
approved these changes
May 21, 2026
- release-test.yml: new manual-dispatch workflow that builds and publishes to TestPyPI via OIDC trusted publishing; lets us verify the package end-to-end before committing to real PyPI - release.yml: replace `uv run --with twine` with `uvx twine` so twine runs in an isolated env and doesn't try to resolve the project's private cairo dependency - Justfile: match release.yml by using --no-sources in `just build` and `uvx` for twine; add `just publish-test` recipe for local TestPyPI uploads Co-authored-by: Cursor <cursoragent@cursor.com>
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
This PR adds and modifies scripts needed to perform a library release.
Closes #428