From 10b2d2ceb9aa89e9049ce9d9fad6a3418ca15f7b Mon Sep 17 00:00:00 2001 From: Mark Merritt Date: Wed, 22 Jul 2026 13:31:02 -0700 Subject: [PATCH] Fix release build step broken by the uv migration setup.py was deleted in #70 but the release workflow still ran "uv run --frozen python setup.py sdist", so the next release would have failed at the build step (the v2.10.2 release already failed, leaving PyPI at 2.10.1). uv build produces the sdist and wheel from pyproject.toml directly. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e00f39f..9c302e7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,6 +25,6 @@ jobs: with: version: "0.11.2" - name: "Build dist" - run: "uv run --frozen python setup.py sdist --format=zip" + run: "uv build" - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1