We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43c34af commit a49cb3dCopy full SHA for a49cb3d
1 file changed
.github/workflows/ci-wheels.yml
@@ -1,5 +1,5 @@
1
name: CI Wheels
2
-on: [release, workflow_dispatch]
+on: [release, workflow_dispatch, push]
3
4
jobs:
5
build-wheels:
@@ -25,23 +25,15 @@ jobs:
25
with:
26
submodules: 'recursive'
27
28
- - name: Set up Python
29
- uses: actions/setup-python@v5
30
- with:
31
- python-version: |
32
- 3.13
33
- 3.12
34
- 3.11
35
- 3.10
36
- 3.9
37
-
38
- name: Build wheels
39
- uses: pypa/cibuildwheel@v3.0
+ uses: pypa/cibuildwheel@352e01339f0a173aa2a3eb57f01492e341e83865 # v3.1.3
40
env:
41
CIBW_ARCHS: "${{ matrix.arch }}"
+ CIBW_SKIP: "cp314*"
42
43
- name: Upload wheels
44
uses: actions/upload-artifact@v4
45
46
name: wheels-${{ matrix.runs-on }}-${{ matrix.arch }}
47
path: ./wheelhouse/*.whl
+
0 commit comments