release(1.6.1): manifest declares only crates.io-published crates, in publish order - #1591
Merged
Merged
Conversation
…st, in publish order The kit's list-publish-plan emits every [[crates]] entry in manifest file order. Release run 35952487967 failed on the first entry, atm-graft-python, whose Cargo.toml has publish = false. Remove the two PyPI-only bridge crates from [[crates]] (they stay under [[python_packages]]/[[python_distributions]]) and order the remaining blocks by publish_order. The resulting plan is identical to the 1.6.0 upload sequence. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
rand-lee
approved these changes
Sep 24, 2026
This was referenced Sep 24, 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.
Release run 35952487967 for v1.6.1 failed at the first
cargo publish:atm-graft-python cannot be published(its Cargo.toml haspublish = false). Nothing was uploaded to any channel; the publisher cancelled the run before the GitHub Release job. The v1.6.1 tag exists at 1272d4c andgate-and-tagreuses it.Cause. The kit's
list-publish-planemits every[[crates]]entry in manifest file order. atm-core's 1.6.0 copy ofrelease_artifacts.pycarried a local fix that skippedpublish = falsecrates and sorted bypublish_order; the phase-bc kit re-render (b381e09) replaced that copy with upstream, which never had the fix. 1.6.1 is the first release on the re-rendered copy.Fix (manifest only, no kit file touched).
release/publish-artifacts.toml:publish = false[[crates]]entries (atm-graft-python,atm-query-python); they are PyPI-only bridge crates and remain declared under[[python_packages]]/[[python_distributions]], which is what builds and publishes them;[[crates]]blocks to match theirpublish_order, since the kit publishes in file order.Verified locally with the pinned kit script:
validate-manifestpasses,validate-publish-orderpasses,python-wheel-matrixunchanged, andlist-publish-planoutput is identical, crate for crate and in order, to the 1.6.0 upload sequence in run 34988409741.🤖 Generated with Claude Code