Skip to content

Commit 5dbfb42

Browse files
run cibuildwheel manually
1 parent b4b073a commit 5dbfb42

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/buildwheels.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,15 @@ jobs:
4242
- name: Change to Python wrapper directory
4343
run: cd wrap/python
4444

45+
- name: Install cibuildwheel
46+
run: python -m pip install cibuildwheel=2.19.2
47+
working-directory: wrap/python
48+
4549
- name: Build wheels
46-
uses: pypa/[email protected]
50+
run: python -m cibuildwheel --output-dir wheelhouse
51+
working-directory: wrap/python
4752

4853
- uses: actions/upload-artifact@v4
4954
with:
5055
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
51-
path: ./wheelhouse/*.whl
56+
path: ./wrap/python/wheelhouse/*.whl

0 commit comments

Comments
 (0)