Add PyPI publishing workflows and switch to uv_build backend#4
Merged
Conversation
collindutter
approved these changes
Jun 2, 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.
Adds a release/publish pipeline so new versions can be cut to PyPI, mirroring
griptape-nodes. The last published version (0.1.1) is behindmainand missing the/apiendpoint-prefix change.Changes
publish.yml— on a published Release (or manual dispatch), runsmake check, thenuv build+uv publish. Docker jobs omitted (no images); publish matrix pinned to 3.12.stable-release.yml— onv*tag, creates a GitHub Release.version-bump-on-release.yml— onrelease/**push, cherry-picks the version bump back tomainvia PR.version/*targets the flow depends on.hatchling→uv_build(flat layout, somodule-root = ""; the gitignoredgenerated/scratch dir is excluded from the build).0.1.0→0.2.0so the next publish lands above0.1.1.Required secrets
PYPI_TOKEN— publish to PyPI.RELEASE_PAT— release + PR creation.