@@ -70,24 +70,16 @@ jobs:
70
70
platforms : all
71
71
72
72
- name : Install cibuildwheel
73
- # Note: the default manylinux is manylinux2014
73
+ # Note: the default manylinux is manylinux_2_28
74
74
run : |
75
75
python -m pip install -U pip
76
- python -m pip install "cibuildwheel>=2.20,<3 "
76
+ python -m pip install "cibuildwheel>=3.2.0,<4 "
77
77
78
78
- name : Build wheels
79
79
env :
80
80
CIBW_BUILD : ${{ matrix.buildplat[2] }}
81
81
run : python -m cibuildwheel --output-dir wheelhouse
82
82
83
- - name : Build manylinux1 wheels
84
- if : ${{ matrix.buildplat[1] == 'manylinux_x86_64' || matrix.buildplat[1] == 'manylinux_i686' }}
85
- env :
86
- CIBW_MANYLINUX_X86_64_IMAGE : manylinux1
87
- CIBW_MANYLINUX_I686_IMAGE : manylinux1
88
- CIBW_BUILD : " cp39-${{ matrix.buildplat[1] }} cp39-${{ matrix.buildplat[1] }}"
89
- run : python -m cibuildwheel --output-dir wheelhouse
90
-
91
83
- name : Assert all versions in wheelhouse
92
84
if : ${{ ! startsWith(matrix.buildplat[1], 'macos') }}
93
85
run : |
96
88
ls wheelhouse/*cp311*.whl
97
89
ls wheelhouse/*cp312*.whl
98
90
ls wheelhouse/*cp313*.whl
91
+ ls wheelhouse/*cp314*.whl
99
92
# Free-threading builds:
100
- ls wheelhouse/*cp313t *.whl
93
+ ls wheelhouse/*cp314t *.whl
101
94
102
95
- uses : actions/upload-artifact@v4
103
96
with :
0 commit comments