Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[build-system]
requires = ["hatchling"]
# Pinned: hatchling 1.32 emits Metadata-Version 2.5, which the twine inside
# our pinned gh-action-pypi-publish rejects ("not a valid metadata version"),
# failing the 0.8.1 upload. An unpinned build backend also makes builds
# non-reproducible. Un-pin once the publish action ships a twine that
# accepts 2.5 (v1.14.2+ is the candidate; verify before widening).
requires = ["hatchling<1.32"]
build-backend = "hatchling.build"

[project]
Expand Down
Loading