fix: install wheel package for retagging platform-specific wheels (#345)

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 <noreply@anthropic.com>
This commit is contained in:
Ashwin Bhat 2025-11-18 21:05:18 -08:00 committed by GitHub
parent ddc37c7330
commit bab98e717e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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