From e96c67e140d642fb6d309a99560c021245705d83 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 25 Mar 2026 10:58:02 +0100 Subject: [PATCH] fix: pin build to 1.4.0 for now --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 074d677c9..e774a91c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -336,8 +336,9 @@ jobs: python-version: "${{ matrix.python-version }}" - name: Build distribution + # TODO: remove hard-pin on build 1.4.0 once https://github.com/pypa/build/issues/1004 is resolved. run: | - uv pip install -U build + uv pip install -U build==1.4.0 python -m build --sdist --wheel - name: Upload artifacts 📦