90
90
cibuildwheel --output-dir wheelhouse
91
91
env :
92
92
CIBW_BUILD : cp${{ matrix.python-version }}-*
93
+ CIBW_ENABLE : cpython-freethreading # No-GIL 3.13t builds
93
94
CIBW_PLATFORM : linux
94
95
CIBW_ARCHS : x86_64
95
96
- name : Upload wheels
@@ -133,6 +134,7 @@ jobs:
133
134
cibuildwheel --output-dir wheelhouse
134
135
env :
135
136
CIBW_BUILD : cp${{ matrix.python-version }}-*
137
+ CIBW_ENABLE : cpython-freethreading # No-GIL 3.13t builds
136
138
CIBW_PLATFORM : linux
137
139
CIBW_ARCHS : aarch64
138
140
- name : Upload wheels
@@ -163,6 +165,7 @@ jobs:
163
165
cibuildwheel --output-dir wheelhouse
164
166
env :
165
167
CIBW_BUILD : cp${{ matrix.python-version }}-*
168
+ CIBW_ENABLE : cpython-freethreading # No-GIL 3.13t builds
166
169
CIBW_PLATFORM : macos
167
170
CIBW_ARCHS : x86_64
168
171
- name : Upload wheels
@@ -179,7 +182,7 @@ jobs:
179
182
strategy :
180
183
matrix :
181
184
# 3.7 not supported on macOS ARM
182
- python-version : ["38", "39", "310", "311", "312", "313"]
185
+ python-version : ["38", "39", "310", "311", "312", "313", "313t" ]
183
186
steps :
184
187
- uses : actions/checkout@v4
185
188
with :
@@ -194,6 +197,7 @@ jobs:
194
197
cibuildwheel --output-dir wheelhouse
195
198
env :
196
199
CIBW_BUILD : cp${{ matrix.python-version }}-*
200
+ CIBW_ENABLE : cpython-freethreading # No-GIL 3.13t builds
197
201
CIBW_PLATFORM : macos
198
202
CIBW_ARCHS : arm64
199
203
- name : Upload wheels
@@ -242,6 +246,7 @@ jobs:
242
246
cibuildwheel --output-dir wheelhouse
243
247
env :
244
248
CIBW_BUILD : cp${{ matrix.python-version }}-win_${{ matrix.architecture }}
249
+ CIBW_ENABLE : cpython-freethreading # No-GIL 3.13t builds
245
250
CIBW_PLATFORM : windows
246
251
- name : Upload wheels
247
252
uses : actions/upload-artifact@v4
@@ -274,6 +279,7 @@ jobs:
274
279
env :
275
280
# e.g. ppc64le, s390x, i686, etc.
276
281
CIBW_BUILD : cp${{ matrix.python-version }}-*
282
+ CIBW_ENABLE : cpython-freethreading # No-GIL 3.13t builds
277
283
CIBW_PLATFORM : linux
278
284
CIBW_ARCHS : ppc64le s390x i686
279
285
- name : Upload wheels
0 commit comments