From bab98e717e81458131e2fe8dddef1b09e5728ff3 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Tue, 18 Nov 2025 21:05:18 -0800 Subject: [PATCH] fix: install wheel package for retagging platform-specific wheels (#345) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build_wheel.py script uses `python -m wheel tags` to retag wheels with platform-specific tags, but `wheel` wasn't explicitly installed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9a0b817..057a8f5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -84,7 +84,7 @@ jobs: - name: Install build dependencies run: | python -m pip install --upgrade pip - pip install build twine + pip install build twine wheel shell: bash - name: Build wheel with bundled CLI