4
4
# Defines the Python sys.platform value where this configuration
5
5
# can be built from.
6
6
#
7
+ # pythons_supported
8
+ # Python versions we support building.
9
+ #
7
10
# needs_toolchain
8
11
# Whether this build requires the presence of a custom compiled toolchain.
9
12
# If not defined, it is assumed the toolchain is present in the build
49
52
aarch64-apple-darwin :
50
53
host_platforms :
51
54
- darwin
55
+ pythons_supported :
56
+ - ' cpython-3.9'
52
57
needs_toolchain : true
53
58
host_cc : clang
54
59
target_cc : clang
@@ -78,6 +83,8 @@ aarch64-apple-darwin:
78
83
aarch64-apple-ios :
79
84
host_platforms :
80
85
- darwin
86
+ pythons_supported :
87
+ - ' cpython-3.9'
81
88
needs_toolchain : true
82
89
apple_sdk_platform : iphoneos
83
90
host_cc : clang
@@ -101,6 +108,8 @@ aarch64-apple-ios:
101
108
aarch64-unknown-linux-gnu :
102
109
host_platforms :
103
110
- linux
111
+ pythons_supported :
112
+ - ' cpython-3.9'
104
113
docker_image_suffix : .cross
105
114
host_cc : /usr/bin/x86_64-linux-gnu-gcc
106
115
target_cc : /usr/bin/aarch64-linux-gnu-gcc
@@ -129,6 +138,8 @@ aarch64-unknown-linux-gnu:
129
138
arm64-apple-tvos :
130
139
host_platforms :
131
140
- darwin
141
+ pythons_supported :
142
+ - ' cpython-3.9'
132
143
needs_toolchain : true
133
144
apple_sdk_platform : appletvos
134
145
host_cc : clang
@@ -151,6 +162,8 @@ arm64-apple-tvos:
151
162
armv7-unknown-linux-gnueabi :
152
163
host_platforms :
153
164
- linux
165
+ pythons_supported :
166
+ - ' cpython-3.9'
154
167
docker_image_suffix : .cross
155
168
host_cc : /usr/bin/x86_64-linux-gnu-gcc
156
169
target_cc : /usr/bin/arm-linux-gnueabi-gcc
@@ -179,6 +192,8 @@ armv7-unknown-linux-gnueabi:
179
192
armv7-unknown-linux-gnueabihf :
180
193
host_platforms :
181
194
- linux
195
+ pythons_supported :
196
+ - ' cpython-3.9'
182
197
docker_image_suffix : .cross
183
198
host_cc : /usr/bin/x86_64-linux-gnu-gcc
184
199
target_cc : /usr/bin/arm-linux-gnueabihf-gcc
@@ -207,6 +222,10 @@ armv7-unknown-linux-gnueabihf:
207
222
i686-unknown-linux-gnu :
208
223
host_platforms :
209
224
- linux
225
+ pythons_supported :
226
+ - ' cpython-3.8'
227
+ - ' cpython-3.9'
228
+ - ' cpython-3.10'
210
229
needs_toolchain : true
211
230
host_cc : clang
212
231
target_cc : clang
@@ -241,6 +260,8 @@ i686-unknown-linux-gnu:
241
260
mips-unknown-linux-gnu :
242
261
host_platforms :
243
262
- linux
263
+ pythons_supported :
264
+ - ' cpython-3.9'
244
265
docker_image_suffix : .cross
245
266
host_cc : /usr/bin/x86_64-linux-gnu-gcc
246
267
target_cc : /usr/bin/mips-linux-gnu-gcc
@@ -269,6 +290,8 @@ mips-unknown-linux-gnu:
269
290
mipsel-unknown-linux-gnu :
270
291
host_platforms :
271
292
- linux
293
+ pythons_supported :
294
+ - ' cpython-3.9'
272
295
docker_image_suffix : .cross
273
296
host_cc : /usr/bin/x86_64-linux-gnu-gcc
274
297
target_cc : /usr/bin/mipsel-linux-gnu-gcc
@@ -297,6 +320,8 @@ mipsel-unknown-linux-gnu:
297
320
s390x-unknown-linux-gnu :
298
321
host_platforms :
299
322
- linux
323
+ pythons_supported :
324
+ - ' cpython-3.9'
300
325
docker_image_suffix : .cross
301
326
host_cc : /usr/bin/x86_64-linux-gnu-gcc
302
327
target_cc : /usr/bin/s390x-linux-gnu-gcc
@@ -325,6 +350,8 @@ s390x-unknown-linux-gnu:
325
350
thumb7k-apple-watchos :
326
351
host_platforms :
327
352
- darwin
353
+ pythons_supported :
354
+ - ' cpython-3.9'
328
355
needs_toolchain : true
329
356
apple_sdk_platform : watchos
330
357
host_cc : clang
@@ -351,6 +378,9 @@ thumb7k-apple-watchos:
351
378
x86_64-apple-darwin :
352
379
host_platforms :
353
380
- darwin
381
+ pythons_supported :
382
+ - ' cpython-3.8'
383
+ - ' cpython-3.9'
354
384
apple_sdk_platform : macosx
355
385
host_cc : clang
356
386
target_cc : clang
@@ -379,6 +409,8 @@ x86_64-apple-darwin:
379
409
x86_64-apple-ios :
380
410
host_platforms :
381
411
- darwin
412
+ pythons_supported :
413
+ - ' cpython-3.9'
382
414
needs_toolchain : true
383
415
apple_sdk_platform : iphonesimulator
384
416
host_cc : clang
@@ -402,6 +434,8 @@ x86_64-apple-ios:
402
434
x86_64-apple-tvos :
403
435
host_platforms :
404
436
- darwin
437
+ pythons_supported :
438
+ - ' cpython-3.9'
405
439
needs_toolchain : true
406
440
apple_sdk_platform : appletvsimulator
407
441
host_cc : clang
@@ -423,6 +457,8 @@ x86_64-apple-tvos:
423
457
x86_64-apple-watchos :
424
458
host_platforms :
425
459
- darwin
460
+ pythons_supported :
461
+ - ' cpython-3.9'
426
462
needs_toolchain : true
427
463
apple_sdk_platform : watchsimulator
428
464
host_cc : clang
@@ -445,6 +481,10 @@ x86_64-apple-watchos:
445
481
x86_64-unknown-linux-gnu :
446
482
host_platforms :
447
483
- linux
484
+ pythons_supported :
485
+ - ' cpython-3.8'
486
+ - ' cpython-3.9'
487
+ - ' cpython-3.10'
448
488
needs_toolchain : true
449
489
host_cc : clang
450
490
target_cc : clang
@@ -474,6 +514,10 @@ x86_64-unknown-linux-gnu:
474
514
x86_64-unknown-linux-musl :
475
515
host_platforms :
476
516
- linux
517
+ pythons_supported :
518
+ - ' cpython-3.8'
519
+ - ' cpython-3.9'
520
+ - ' cpython-3.10'
477
521
needs_toolchain : true
478
522
host_cc : clang
479
523
target_cc : musl-clang
0 commit comments