chore(release): v0.11.0-rc2#107
Merged
Merged
Conversation
hatchling 1.30.0 (released 2026-06-01) emits ``Metadata-Version: 2.5`` per PEP 770, which the twine 6.1.0 shipped in ``pypa/gh-action-pypi-publish@v1.14.0`` rejects at preflight. The v0.11.0-rc1 publish failed for this reason. Cap hatchling below 1.30 in ``[build-system].requires`` so the wheel falls back to metadata version 2.4, and bump version pins to ``0.11.0rc2`` for a fresh tag.
The bundled ``src/openarmature/AGENTS.md`` embeds the package version in its header, so the drift test rejected the rc1 banner after the version pin moved to ``0.11.0rc2``. Re-ran ``scripts/build_agents_md.py``.
There was a problem hiding this comment.
Pull request overview
Release-candidate bump from v0.11.0-rc1 to v0.11.0-rc2 plus a build-system fix: pin hatchling<1.30 to avoid Metadata-Version: 2.5 (PEP 770) wheels that the twine in pypa/gh-action-pypi-publish@v1.14.0 rejects, which caused the rc1 TestPyPI publish to fail.
Changes:
- Cap
hatchling<1.30in[build-system].requireswith an inline comment explaining the cause and removal criterion. - Bump version to
0.11.0rc2inpyproject.toml,src/openarmature/__init__.py, andtests/test_smoke.py. - Sync
uv.lockeditable package metadata to0.11.0rc2.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pyproject.toml | Pins hatchling<1.30 with rationale and bumps project version to 0.11.0rc2. |
| src/openarmature/init.py | Updates __version__ to 0.11.0rc2. |
| tests/test_smoke.py | Updates pinned __version__ assertion to 0.11.0rc2. |
| uv.lock | Updates editable openarmature package version to 0.11.0rc2. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
hatchling<1.30in[build-system].requires. hatchling 1.30.0 (released 2026-06-01) emitsMetadata-Version: 2.5per PEP 770, which the twine 6.1.0 shipped inpypa/gh-action-pypi-publish@v1.14.0rejects at preflight. The v0.11.0-rc1 publish failed for this reason (run 26730414961, publish-testpypi job).0.11.0rc2inpyproject.toml,src/openarmature/__init__.py,tests/test_smoke.py, anduv.lock.Local wheel build with the pin in place confirmed reverts to
Metadata-Version: 2.4.Test plan
v0.11.0-rc2and confirm the release workflow'spublish-testpypijob succeeds (this is the gate that failed for rc1)RELEASING.md