@@ -140,15 +140,26 @@ jobs:
140
140
name : cibw-sdist
141
141
path : dist/
142
142
143
+ - name : Build wheels for CPython 3.14
144
+ uses : pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
145
+ with :
146
+ package-dir : dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
147
+ env :
148
+ CIBW_BUILD : " cp314-* cp314t-*"
149
+ CIBW_ENABLE : " cpython-freethreading cpython-prerelease"
150
+ CIBW_ARCHS : ${{ matrix.cibw_archs }}
151
+ CIBW_BEFORE_TEST : |
152
+ python -m pip install \
153
+ --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
154
+ --upgrade --only-binary=:all: contourpy numpy pillow
155
+
143
156
- name : Build wheels for CPython 3.13
144
157
uses : pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
145
158
with :
146
159
package-dir : dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
147
160
env :
148
161
CIBW_BUILD : " cp313-* cp313t-*"
149
162
CIBW_ENABLE : cpython-freethreading
150
- # No free-threading wheels available for aarch64 on Pillow.
151
- CIBW_TEST_SKIP : " cp313t-manylinux_aarch64"
152
163
CIBW_ARCHS : ${{ matrix.cibw_archs }}
153
164
154
165
- name : Build wheels for CPython 3.12
@@ -167,7 +178,6 @@ jobs:
167
178
CIBW_BUILD : " cp311-*"
168
179
CIBW_ARCHS : ${{ matrix.cibw_archs }}
169
180
170
-
171
181
- name : Build wheels for PyPy
172
182
uses : pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7 # v3.0.0
173
183
with :
@@ -176,8 +186,6 @@ jobs:
176
186
CIBW_BUILD : " pp311-*"
177
187
CIBW_ARCHS : ${{ matrix.cibw_archs }}
178
188
CIBW_ENABLE : pypy
179
- # No wheels available for Pillow with pp311 yet.
180
- CIBW_TEST_SKIP : " pp311*"
181
189
if : matrix.cibw_archs != 'aarch64' && matrix.os != 'windows-latest'
182
190
183
191
- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
0 commit comments