From 36b78bdd1998db9f4e7712f6ff6b1ab668e3e40a Mon Sep 17 00:00:00 2001 From: Joel Ray Holveck Date: Sun, 31 May 2026 18:44:28 -0700 Subject: [PATCH] Pin hatchling to 1.29.0 About an hour ago, a new version of our build system, Hatchling (1.30.0), was released. This sets the metadata-version to 2.5. But that version is not supported by Twine, our PyPI upload system. I haven't researched if there's a better option, but this should deal with the immediate problem. At the least, we should update Hatchling once Twine is able to handle 2.5. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9f7fea6f..066ba845 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling"] +requires = ["hatchling==1.29.0"] build-backend = "hatchling.build" [project]