Skip to content

Commit 8499628

Browse files
henryiiijoerick
andauthored
feat: add Python 3.12 beta 1 (#1507)
* feat: add Python 3.12 beta 1 Signed-off-by: Henry Schreiner <[email protected]> * fix: try updating some versions to (near) final 3.6 supported version Signed-off-by: Henry Schreiner <[email protected]> * tests: skip dep check on 3.6 Signed-off-by: Henry Schreiner <[email protected]> * Update test pip version pin * Fix expected wheels check --------- Signed-off-by: Henry Schreiner <[email protected]> Co-authored-by: Joe Rickerby <[email protected]>
1 parent b2bc6fd commit 8499628

20 files changed

+112
-49
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: wntrblm/[email protected]
2626
with:
27-
python-versions: "3.7, 3.8, 3.9, 3.10, 3.11"
27+
python-versions: "3.7, 3.8, 3.9, 3.10, 3.11, 3.12-dev"
2828

2929
- name: "Run update: dependencies"
3030
run: nox --force-color -s update_constraints

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ What does it do?
3131
| CPython 3.9 ||||| ✅² | ✅³ |||||
3232
| CPython 3.10 ||||| ✅² ||||||
3333
| CPython 3.11 ||||| ✅² ||||||
34+
| CPython 3.12⁵ ||||| ✅² ||||||
3435
| PyPy 3.7 v7.3 || N/A || N/A | N/A | ✅¹ | ✅¹ | ✅¹ | N/A | N/A |
3536
| PyPy 3.8 v7.3 || ✅⁴ || N/A | N/A | ✅¹ | ✅¹ | ✅¹ | N/A | N/A |
3637
| PyPy 3.9 v7.3 || ✅⁴ || N/A | N/A | ✅¹ | ✅¹ | ✅¹ | N/A | N/A |
@@ -39,6 +40,7 @@ What does it do?
3940
<sup>² Windows arm64 support is experimental.</sup><br>
4041
<sup>³ Alpine 3.14 and very briefly 3.15's default python3 [was not able to load](https://github.com/pypa/cibuildwheel/issues/934) musllinux wheels. This has been fixed; please upgrade the python package if using Alpine from before the fix.</sup><br>
4142
<sup>⁴ Cross-compilation not supported with PyPy - to build these wheels you need to run cibuildwheel on an Apple Silicon machine.</sup><br>
43+
<sup>⁵ CPython 3.12 is available using the [CIBW_PRERELEASE_PYTHONS](https://cibuildwheel.readthedocs.io/en/stable/options/#prerelease-pythons) option.</sup><br>
4244

4345
- Builds manylinux, musllinux, macOS 10.9+, and Windows wheels for CPython and PyPy
4446
- Works on GitHub Actions, Azure Pipelines, Travis CI, AppVeyor, CircleCI, GitLab CI, and Cirrus CI

cibuildwheel/resources/build-platforms.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ python_configurations = [
66
{ identifier = "cp39-manylinux_x86_64", version = "3.9", path_str = "/opt/python/cp39-cp39" },
77
{ identifier = "cp310-manylinux_x86_64", version = "3.10", path_str = "/opt/python/cp310-cp310" },
88
{ identifier = "cp311-manylinux_x86_64", version = "3.11", path_str = "/opt/python/cp311-cp311" },
9+
{ identifier = "cp312-manylinux_x86_64", version = "3.12", path_str = "/opt/python/cp312-cp312" },
910
{ identifier = "cp36-manylinux_i686", version = "3.6", path_str = "/opt/python/cp36-cp36m" },
1011
{ identifier = "cp37-manylinux_i686", version = "3.7", path_str = "/opt/python/cp37-cp37m" },
1112
{ identifier = "cp38-manylinux_i686", version = "3.8", path_str = "/opt/python/cp38-cp38" },
1213
{ identifier = "cp39-manylinux_i686", version = "3.9", path_str = "/opt/python/cp39-cp39" },
1314
{ identifier = "cp310-manylinux_i686", version = "3.10", path_str = "/opt/python/cp310-cp310" },
1415
{ identifier = "cp311-manylinux_i686", version = "3.11", path_str = "/opt/python/cp311-cp311" },
16+
{ identifier = "cp312-manylinux_i686", version = "3.12", path_str = "/opt/python/cp312-cp312" },
1517
{ identifier = "pp37-manylinux_x86_64", version = "3.7", path_str = "/opt/python/pp37-pypy37_pp73" },
1618
{ identifier = "pp38-manylinux_x86_64", version = "3.8", path_str = "/opt/python/pp38-pypy38_pp73" },
1719
{ identifier = "pp39-manylinux_x86_64", version = "3.9", path_str = "/opt/python/pp39-pypy39_pp73" },
@@ -21,18 +23,21 @@ python_configurations = [
2123
{ identifier = "cp39-manylinux_aarch64", version = "3.9", path_str = "/opt/python/cp39-cp39" },
2224
{ identifier = "cp310-manylinux_aarch64", version = "3.10", path_str = "/opt/python/cp310-cp310" },
2325
{ identifier = "cp311-manylinux_aarch64", version = "3.11", path_str = "/opt/python/cp311-cp311" },
26+
{ identifier = "cp312-manylinux_aarch64", version = "3.12", path_str = "/opt/python/cp312-cp312" },
2427
{ identifier = "cp36-manylinux_ppc64le", version = "3.6", path_str = "/opt/python/cp36-cp36m" },
2528
{ identifier = "cp37-manylinux_ppc64le", version = "3.7", path_str = "/opt/python/cp37-cp37m" },
2629
{ identifier = "cp38-manylinux_ppc64le", version = "3.8", path_str = "/opt/python/cp38-cp38" },
2730
{ identifier = "cp39-manylinux_ppc64le", version = "3.9", path_str = "/opt/python/cp39-cp39" },
2831
{ identifier = "cp310-manylinux_ppc64le", version = "3.10", path_str = "/opt/python/cp310-cp310" },
2932
{ identifier = "cp311-manylinux_ppc64le", version = "3.11", path_str = "/opt/python/cp311-cp311" },
33+
{ identifier = "cp312-manylinux_ppc64le", version = "3.12", path_str = "/opt/python/cp312-cp312" },
3034
{ identifier = "cp36-manylinux_s390x", version = "3.6", path_str = "/opt/python/cp36-cp36m" },
3135
{ identifier = "cp37-manylinux_s390x", version = "3.7", path_str = "/opt/python/cp37-cp37m" },
3236
{ identifier = "cp38-manylinux_s390x", version = "3.8", path_str = "/opt/python/cp38-cp38" },
3337
{ identifier = "cp39-manylinux_s390x", version = "3.9", path_str = "/opt/python/cp39-cp39" },
3438
{ identifier = "cp310-manylinux_s390x", version = "3.10", path_str = "/opt/python/cp310-cp310" },
3539
{ identifier = "cp311-manylinux_s390x", version = "3.11", path_str = "/opt/python/cp311-cp311" },
40+
{ identifier = "cp312-manylinux_s390x", version = "3.12", path_str = "/opt/python/cp312-cp312" },
3641
{ identifier = "pp37-manylinux_aarch64", version = "3.7", path_str = "/opt/python/pp37-pypy37_pp73" },
3742
{ identifier = "pp38-manylinux_aarch64", version = "3.8", path_str = "/opt/python/pp38-pypy38_pp73" },
3843
{ identifier = "pp39-manylinux_aarch64", version = "3.9", path_str = "/opt/python/pp39-pypy39_pp73" },
@@ -45,30 +50,35 @@ python_configurations = [
4550
{ identifier = "cp39-musllinux_x86_64", version = "3.9", path_str = "/opt/python/cp39-cp39" },
4651
{ identifier = "cp310-musllinux_x86_64", version = "3.10", path_str = "/opt/python/cp310-cp310" },
4752
{ identifier = "cp311-musllinux_x86_64", version = "3.11", path_str = "/opt/python/cp311-cp311" },
53+
{ identifier = "cp312-musllinux_x86_64", version = "3.12", path_str = "/opt/python/cp312-cp312" },
4854
{ identifier = "cp36-musllinux_i686", version = "3.6", path_str = "/opt/python/cp36-cp36m" },
4955
{ identifier = "cp37-musllinux_i686", version = "3.7", path_str = "/opt/python/cp37-cp37m" },
5056
{ identifier = "cp38-musllinux_i686", version = "3.8", path_str = "/opt/python/cp38-cp38" },
5157
{ identifier = "cp39-musllinux_i686", version = "3.9", path_str = "/opt/python/cp39-cp39" },
5258
{ identifier = "cp310-musllinux_i686", version = "3.10", path_str = "/opt/python/cp310-cp310" },
5359
{ identifier = "cp311-musllinux_i686", version = "3.11", path_str = "/opt/python/cp311-cp311" },
60+
{ identifier = "cp312-musllinux_i686", version = "3.12", path_str = "/opt/python/cp312-cp312" },
5461
{ identifier = "cp36-musllinux_aarch64", version = "3.6", path_str = "/opt/python/cp36-cp36m" },
5562
{ identifier = "cp37-musllinux_aarch64", version = "3.7", path_str = "/opt/python/cp37-cp37m" },
5663
{ identifier = "cp38-musllinux_aarch64", version = "3.8", path_str = "/opt/python/cp38-cp38" },
5764
{ identifier = "cp39-musllinux_aarch64", version = "3.9", path_str = "/opt/python/cp39-cp39" },
5865
{ identifier = "cp310-musllinux_aarch64", version = "3.10", path_str = "/opt/python/cp310-cp310" },
5966
{ identifier = "cp311-musllinux_aarch64", version = "3.11", path_str = "/opt/python/cp311-cp311" },
67+
{ identifier = "cp312-musllinux_aarch64", version = "3.12", path_str = "/opt/python/cp312-cp312" },
6068
{ identifier = "cp36-musllinux_ppc64le", version = "3.6", path_str = "/opt/python/cp36-cp36m" },
6169
{ identifier = "cp37-musllinux_ppc64le", version = "3.7", path_str = "/opt/python/cp37-cp37m" },
6270
{ identifier = "cp38-musllinux_ppc64le", version = "3.8", path_str = "/opt/python/cp38-cp38" },
6371
{ identifier = "cp39-musllinux_ppc64le", version = "3.9", path_str = "/opt/python/cp39-cp39" },
6472
{ identifier = "cp310-musllinux_ppc64le", version = "3.10", path_str = "/opt/python/cp310-cp310" },
6573
{ identifier = "cp311-musllinux_ppc64le", version = "3.11", path_str = "/opt/python/cp311-cp311" },
74+
{ identifier = "cp312-musllinux_ppc64le", version = "3.12", path_str = "/opt/python/cp312-cp312" },
6675
{ identifier = "cp36-musllinux_s390x", version = "3.6", path_str = "/opt/python/cp36-cp36m" },
6776
{ identifier = "cp37-musllinux_s390x", version = "3.7", path_str = "/opt/python/cp37-cp37m" },
6877
{ identifier = "cp38-musllinux_s390x", version = "3.8", path_str = "/opt/python/cp38-cp38" },
6978
{ identifier = "cp39-musllinux_s390x", version = "3.9", path_str = "/opt/python/cp39-cp39" },
7079
{ identifier = "cp310-musllinux_s390x", version = "3.10", path_str = "/opt/python/cp310-cp310" },
7180
{ identifier = "cp311-musllinux_s390x", version = "3.11", path_str = "/opt/python/cp311-cp311" },
81+
{ identifier = "cp312-musllinux_s390x", version = "3.12", path_str = "/opt/python/cp312-cp312" },
7282
]
7383

7484
[macos]
@@ -87,6 +97,9 @@ python_configurations = [
8797
{ identifier = "cp311-macosx_x86_64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.3/python-3.11.3-macos11.pkg" },
8898
{ identifier = "cp311-macosx_arm64", version = "3.11", url = "https://www.python.org/ftp/python/3.11.3/python-3.11.3-macos11.pkg" },
8999
{ identifier = "cp311-macosx_universal2", version = "3.11", url = "https://www.python.org/ftp/python/3.11.3/python-3.11.3-macos11.pkg" },
100+
{ identifier = "cp312-macosx_x86_64", version = "3.12", url = "https://www.python.org/ftp/python/3.12.0/python-3.12.0b1-macos11.pkg" },
101+
{ identifier = "cp312-macosx_arm64", version = "3.12", url = "https://www.python.org/ftp/python/3.12.0/python-3.12.0b1-macos11.pkg" },
102+
{ identifier = "cp312-macosx_universal2", version = "3.12", url = "https://www.python.org/ftp/python/3.12.0/python-3.12.0b1-macos11.pkg" },
90103
{ identifier = "pp37-macosx_x86_64", version = "3.7", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.9-osx64.tar.bz2" },
91104
{ identifier = "pp38-macosx_x86_64", version = "3.8", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.11-macos_x86_64.tar.bz2" },
92105
{ identifier = "pp38-macosx_arm64", version = "3.8", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.11-macos_arm64.tar.bz2" },
@@ -108,9 +121,12 @@ python_configurations = [
108121
{ identifier = "cp310-win_amd64", version = "3.10.11", arch = "64" },
109122
{ identifier = "cp311-win32", version = "3.11.3", arch = "32" },
110123
{ identifier = "cp311-win_amd64", version = "3.11.3", arch = "64" },
124+
{ identifier = "cp312-win32", version = "3.12.0-b1", arch = "32" },
125+
{ identifier = "cp312-win_amd64", version = "3.12.0-b1", arch = "64" },
111126
{ identifier = "cp39-win_arm64", version = "3.9.10", arch = "ARM64" },
112127
{ identifier = "cp310-win_arm64", version = "3.10.11", arch = "ARM64" },
113128
{ identifier = "cp311-win_arm64", version = "3.11.3", arch = "ARM64" },
129+
{ identifier = "cp312-win_arm64", version = "3.12.0-b1", arch = "ARM64" },
114130
{ identifier = "pp37-win_amd64", version = "3.7", arch = "64", url = "https://downloads.python.org/pypy/pypy3.7-v7.3.9-win64.zip" },
115131
{ identifier = "pp38-win_amd64", version = "3.8", arch = "64", url = "https://downloads.python.org/pypy/pypy3.8-v7.3.11-win64.zip" },
116132
{ identifier = "pp39-win_amd64", version = "3.9", arch = "64", url = "https://downloads.python.org/pypy/pypy3.9-v7.3.11-win64.zip" },

cibuildwheel/resources/constraints-python310.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packaging==23.1
1414
# via delocate
1515
platformdirs==3.5.1
1616
# via virtualenv
17-
typing-extensions==4.5.0
17+
typing-extensions==4.6.2
1818
# via delocate
1919
virtualenv==20.23.0
2020
# via -r cibuildwheel/resources/constraints.in
@@ -24,5 +24,5 @@ wheel==0.40.0
2424
# The following packages are considered to be unsafe in a requirements file:
2525
pip==23.1.2
2626
# via -r cibuildwheel/resources/constraints.in
27-
setuptools==67.7.2
27+
setuptools==67.8.0
2828
# via -r cibuildwheel/resources/constraints.in

cibuildwheel/resources/constraints-python311.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packaging==23.1
1414
# via delocate
1515
platformdirs==3.5.1
1616
# via virtualenv
17-
typing-extensions==4.5.0
17+
typing-extensions==4.6.2
1818
# via delocate
1919
virtualenv==20.23.0
2020
# via -r cibuildwheel/resources/constraints.in
@@ -24,5 +24,5 @@ wheel==0.40.0
2424
# The following packages are considered to be unsafe in a requirements file:
2525
pip==23.1.2
2626
# via -r cibuildwheel/resources/constraints.in
27-
setuptools==67.7.2
27+
setuptools==67.8.0
2828
# via -r cibuildwheel/resources/constraints.in
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.12
3+
# by the following command:
4+
#
5+
# nox -s update_constraints-3.12
6+
#
7+
delocate==0.10.4
8+
# via -r cibuildwheel/resources/constraints.in
9+
distlib==0.3.6
10+
# via virtualenv
11+
filelock==3.12.0
12+
# via virtualenv
13+
packaging==23.1
14+
# via delocate
15+
platformdirs==3.5.1
16+
# via virtualenv
17+
typing-extensions==4.6.2
18+
# via delocate
19+
virtualenv==20.23.0
20+
# via -r cibuildwheel/resources/constraints.in
21+
wheel==0.40.0
22+
# via -r cibuildwheel/resources/constraints.in
23+
24+
# The following packages are considered to be unsafe in a requirements file:
25+
pip==23.1.2
26+
# via -r cibuildwheel/resources/constraints.in
27+
setuptools==67.8.0
28+
# via -r cibuildwheel/resources/constraints.in

cibuildwheel/resources/constraints-python37.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ packaging==23.1
1616
# via delocate
1717
platformdirs==3.5.1
1818
# via virtualenv
19-
typing-extensions==4.5.0
19+
typing-extensions==4.6.2
2020
# via
2121
# delocate
2222
# importlib-metadata
@@ -31,5 +31,5 @@ zipp==3.15.0
3131
# The following packages are considered to be unsafe in a requirements file:
3232
pip==23.1.2
3333
# via -r cibuildwheel/resources/constraints.in
34-
setuptools==67.7.2
34+
setuptools==67.8.0
3535
# via -r cibuildwheel/resources/constraints.in

cibuildwheel/resources/constraints-python38.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packaging==23.1
1414
# via delocate
1515
platformdirs==3.5.1
1616
# via virtualenv
17-
typing-extensions==4.5.0
17+
typing-extensions==4.6.2
1818
# via delocate
1919
virtualenv==20.23.0
2020
# via -r cibuildwheel/resources/constraints.in
@@ -24,5 +24,5 @@ wheel==0.40.0
2424
# The following packages are considered to be unsafe in a requirements file:
2525
pip==23.1.2
2626
# via -r cibuildwheel/resources/constraints.in
27-
setuptools==67.7.2
27+
setuptools==67.8.0
2828
# via -r cibuildwheel/resources/constraints.in

cibuildwheel/resources/constraints-python39.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packaging==23.1
1414
# via delocate
1515
platformdirs==3.5.1
1616
# via virtualenv
17-
typing-extensions==4.5.0
17+
typing-extensions==4.6.2
1818
# via delocate
1919
virtualenv==20.23.0
2020
# via -r cibuildwheel/resources/constraints.in
@@ -24,5 +24,5 @@ wheel==0.40.0
2424
# The following packages are considered to be unsafe in a requirements file:
2525
pip==23.1.2
2626
# via -r cibuildwheel/resources/constraints.in
27-
setuptools==67.7.2
27+
setuptools==67.8.0
2828
# via -r cibuildwheel/resources/constraints.in

cibuildwheel/resources/constraints.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.11
2+
# This file is autogenerated by pip-compile with Python 3.12
33
# by the following command:
44
#
5-
# nox -s update_constraints-3.11
5+
# nox -s update_constraints-3.12
66
#
77
delocate==0.10.4
88
# via -r cibuildwheel/resources/constraints.in
@@ -14,7 +14,7 @@ packaging==23.1
1414
# via delocate
1515
platformdirs==3.5.1
1616
# via virtualenv
17-
typing-extensions==4.5.0
17+
typing-extensions==4.6.2
1818
# via delocate
1919
virtualenv==20.23.0
2020
# via -r cibuildwheel/resources/constraints.in
@@ -24,5 +24,5 @@ wheel==0.40.0
2424
# The following packages are considered to be unsafe in a requirements file:
2525
pip==23.1.2
2626
# via -r cibuildwheel/resources/constraints.in
27-
setuptools==67.7.2
27+
setuptools==67.8.0
2828
# via -r cibuildwheel/resources/constraints.in
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
11
[x86_64]
22
manylinux1 = quay.io/pypa/manylinux1_x86_64:2023-05-01-496eb35
33
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
4-
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2023-04-30-c9c30dc
4+
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2023-05-24-3bf828e
55
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-12-26-0d38463
6-
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2023-04-30-c9c30dc
7-
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2023-04-30-c9c30dc
6+
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2023-05-24-3bf828e
7+
musllinux_1_1 = quay.io/pypa/musllinux_1_1_x86_64:2023-05-24-3bf828e
88

99
[i686]
1010
manylinux1 = quay.io/pypa/manylinux1_i686:2023-05-01-496eb35
1111
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
12-
manylinux2014 = quay.io/pypa/manylinux2014_i686:2023-04-30-c9c30dc
12+
manylinux2014 = quay.io/pypa/manylinux2014_i686:2023-05-24-3bf828e
1313
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-12-26-0d38463
14-
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2023-04-30-c9c30dc
14+
musllinux_1_1 = quay.io/pypa/musllinux_1_1_i686:2023-05-24-3bf828e
1515

1616
[pypy_x86_64]
1717
manylinux2010 = quay.io/pypa/manylinux2010_x86_64:2022-08-05-4535177
18-
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2023-04-30-c9c30dc
18+
manylinux2014 = quay.io/pypa/manylinux2014_x86_64:2023-05-24-3bf828e
1919
manylinux_2_24 = quay.io/pypa/manylinux_2_24_x86_64:2022-12-26-0d38463
20-
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2023-04-30-c9c30dc
20+
manylinux_2_28 = quay.io/pypa/manylinux_2_28_x86_64:2023-05-24-3bf828e
2121

2222
[pypy_i686]
2323
manylinux2010 = quay.io/pypa/manylinux2010_i686:2022-08-05-4535177
24-
manylinux2014 = quay.io/pypa/manylinux2014_i686:2023-04-30-c9c30dc
24+
manylinux2014 = quay.io/pypa/manylinux2014_i686:2023-05-24-3bf828e
2525
manylinux_2_24 = quay.io/pypa/manylinux_2_24_i686:2022-12-26-0d38463
2626

2727
[aarch64]
28-
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2023-04-30-c9c30dc
28+
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2023-05-24-3bf828e
2929
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-12-26-0d38463
30-
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2023-04-30-c9c30dc
31-
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2023-04-30-c9c30dc
30+
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2023-05-24-3bf828e
31+
musllinux_1_1 = quay.io/pypa/musllinux_1_1_aarch64:2023-05-24-3bf828e
3232

3333
[ppc64le]
34-
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2023-04-30-c9c30dc
34+
manylinux2014 = quay.io/pypa/manylinux2014_ppc64le:2023-05-24-3bf828e
3535
manylinux_2_24 = quay.io/pypa/manylinux_2_24_ppc64le:2022-12-26-0d38463
36-
manylinux_2_28 = quay.io/pypa/manylinux_2_28_ppc64le:2023-04-30-c9c30dc
37-
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2023-04-30-c9c30dc
36+
manylinux_2_28 = quay.io/pypa/manylinux_2_28_ppc64le:2023-05-24-3bf828e
37+
musllinux_1_1 = quay.io/pypa/musllinux_1_1_ppc64le:2023-05-24-3bf828e
3838

3939
[s390x]
40-
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2023-04-30-c9c30dc
40+
manylinux2014 = quay.io/pypa/manylinux2014_s390x:2023-05-24-3bf828e
4141
manylinux_2_24 = quay.io/pypa/manylinux_2_24_s390x:2022-12-26-0d38463
42-
manylinux_2_28 = quay.io/pypa/manylinux_2_28_s390x:2023-04-30-c9c30dc
43-
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2023-04-30-c9c30dc
42+
manylinux_2_28 = quay.io/pypa/manylinux_2_28_s390x:2023-05-24-3bf828e
43+
musllinux_1_1 = quay.io/pypa/musllinux_1_1_s390x:2023-05-24-3bf828e
4444

4545
[pypy_aarch64]
46-
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2023-04-30-c9c30dc
46+
manylinux2014 = quay.io/pypa/manylinux2014_aarch64:2023-05-24-3bf828e
4747
manylinux_2_24 = quay.io/pypa/manylinux_2_24_aarch64:2022-12-26-0d38463
48-
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2023-04-30-c9c30dc
48+
manylinux_2_28 = quay.io/pypa/manylinux_2_28_aarch64:2023-05-24-3bf828e
4949

cibuildwheel/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class BuildSelector:
252252
requires_python: SpecifierSet | None = None
253253

254254
# a pattern that skips prerelease versions, when include_prereleases is False.
255-
PRERELEASE_SKIP: ClassVar[str] = ""
255+
PRERELEASE_SKIP: ClassVar[str] = "cp312-*"
256256
prerelease_pythons: bool = False
257257

258258
def __call__(self, build_id: str) -> bool:

0 commit comments

Comments
 (0)