@@ -89,26 +89,26 @@ jobs:
89
89
- name : Install cibuildwheel
90
90
run : |
91
91
python -m pip install --upgrade pip
92
- python -m pip install wheel cibuildwheel
92
+ python -m pip install wheel cibuildwheel==3.1.1
93
93
- name : Build wheels
94
94
if : matrix.manylinux_version == 'manylinux2010'
95
95
env :
96
96
CIBW_BUILD : " cp310-*"
97
97
CIBW_ARCHS_MACOS : x86_64 universal2 arm64
98
98
CIBW_ARCHS_LINUX : ${{ matrix.archs }}
99
99
CIBW_ARCHS_WINDOWS : auto64
100
- CIBW_MANYLINUX_X86_64_IMAGE : manylinux2010
101
- CIBW_MANYLINUX_I686_IMAGE : manylinux2010
100
+ CIBW_MANYLINUX_X86_64_IMAGE : quay.io/pypa/manylinux2010_x86_64
101
+ CIBW_MANYLINUX_I686_IMAGE : quay.io/pypa/manylinux2010_i686
102
102
CIBW_TEST_REQUIRES : pytest
103
103
CIBW_TEST_COMMAND : python -m pytest {package}/py/tests -v
104
104
run : |
105
105
python -m cibuildwheel . --output-dir dist
106
106
- name : Build wheels
107
107
if : matrix.manylinux_version == 'manylinux2014'
108
108
env :
109
- CIBW_BUILD : " cp311-* cp312-* cp313-* cp313t-* pp310-*"
109
+ CIBW_BUILD : " cp311-* cp312-* cp313-* cp313t-* cp314-* cp314t-* pp310-*"
110
110
CIBW_SKIP : " cp313t-win*"
111
- CIBW_ENABLE : cpython-freethreading
111
+ CIBW_ENABLE : cpython-freethreading pypy
112
112
CIBW_ARCHS_MACOS : x86_64 universal2 arm64
113
113
CIBW_ARCHS_LINUX : ${{ matrix.archs }}
114
114
CIBW_ARCHS_WINDOWS : auto64
@@ -121,7 +121,7 @@ jobs:
121
121
- name : Build wheels
122
122
if : runner.os == 'Windows' && matrix.archs == 'ARM64'
123
123
env :
124
- CIBW_BUILD : " cp310-* cp311-* cp312-* cp313-*"
124
+ CIBW_BUILD : " cp310-* cp311-* cp312-* cp313-* cp314-* "
125
125
CIBW_ARCHS_WINDOWS : ${{ matrix.archs }}
126
126
# It is not yet possible to run ARM64 tests, only cross-compile them.
127
127
CIBW_TEST_SKIP : " *-win_arm64"
0 commit comments