We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a616bc commit 02f6e7cCopy full SHA for 02f6e7c
.github/workflows/build_wheels.yml
@@ -28,7 +28,7 @@ jobs:
28
uses: docker/setup-qemu-action@v1
29
30
- name: Build wheels
31
- uses: pypa/cibuildwheel@v2.19.1
+ uses: pypa/cibuildwheel@v2.22.0
32
with:
33
output-dir: ./wheelhouse
34
# to supply options, put them in 'env', like:
@@ -37,6 +37,9 @@ jobs:
37
CIBW_BEFORE_BUILD: pip install numpy setuptools wheel
38
CIBW_ARCHS_MACOS: "x86_64 arm64"
39
40
- - uses: actions/upload-artifact@v2
+ - name: Upload built wheels
41
+ uses: actions/upload-artifact@v4
42
43
+ name: built-wheels-${{ matrix.os }}-${{ matrix.arch }}
44
path: ./wheelhouse/*.whl
45
+ if-no-files-found: warn
0 commit comments