Skip to content

Commit bb279da

Browse files
committed
Update release workflow to include setuptools in cibuildwheel command
- Modified the build command in the GitHub Actions workflow to use 'uvx --with setuptools' for building wheels. setuptools is required but its not installed by uv out of the box.
1 parent ad0184e commit bb279da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
platforms: all
3333

3434
- name: Build wheels
35-
run: uvx [email protected] --output-dir dist
35+
run: uvx --with setuptools [email protected] --output-dir dist
3636
env:
3737
CIBW_BEFORE_BUILD: pip install -e . && python build.py
3838
CIBW_TEST_REQUIRES: pytest

0 commit comments

Comments
 (0)