We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b073a commit 5dbfb42Copy full SHA for 5dbfb42
.github/workflows/buildwheels.yml
@@ -42,10 +42,15 @@ jobs:
42
- name: Change to Python wrapper directory
43
run: cd wrap/python
44
45
+ - name: Install cibuildwheel
46
+ run: python -m pip install cibuildwheel=2.19.2
47
+ working-directory: wrap/python
48
+
49
- name: Build wheels
- uses: pypa/[email protected]
50
+ run: python -m cibuildwheel --output-dir wheelhouse
51
52
53
- uses: actions/upload-artifact@v4
54
with:
55
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
- path: ./wheelhouse/*.whl
56
+ path: ./wrap/python/wheelhouse/*.whl
0 commit comments