Skip to content

Commit 54cc2ec

Browse files
committed
build: adopt manylinux_2_28 on 3.14
This is only needed for ppc64le, which breaks when we introduce cffi 2.0 for free-threaded support (it appears the pre-built 2.0.0b wheels have an glibc 2.22 symbol - unsure if this is a bug). But, `manylinux2014` is getting long in the tooth. I'm not convinced we need to provide binaries that work on distros from 2013. Especially for a Python version released in 2025. So let's just bump the ABI on all 3.14 wheels.
1 parent ea3c086 commit 54cc2ec

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/wheel.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- 'musllinux'
2929
image:
3030
- 'manylinux2014'
31+
- 'manylinux_2_28'
3132
- 'musllinux_1_1'
3233
- 'musllinux_1_2'
3334
exclude:
@@ -45,6 +46,19 @@ jobs:
4546
image: 'musllinux_1_1'
4647
- arch: 's390x'
4748
image: 'musllinux_1_1'
49+
# Switch to manylinux_2_28 on 3.14+.
50+
- py: 'cp39'
51+
image: 'manylinux_2_28'
52+
- py: 'cp310'
53+
image: 'manylinux_2_28'
54+
- py: 'cp311'
55+
image: 'manylinux_2_28'
56+
- py: 'cp312'
57+
image: 'manylinux_2_28'
58+
- py: 'cp313'
59+
image: 'manylinux_2_28'
60+
- py: 'cp314'
61+
image: 'manylinux2014'
4862
# Drop support for musllinux_1_1 on 3.14+
4963
- py: 'cp314'
5064
image: 'musllinux_1_1'

docs/news.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ Version History
3535
to figure out how to thread config settings into ``setup.py`` invocations.
3636
(`--build-option`` is sent to the ``build_wheel`` command but not the
3737
``build_editable`` command.)
38+
* Python 3.14 wheels are now ``manylinux_2_28`` (versus ``manylinux2014``)
39+
for older Python versions. This raises the minimum glibc version from
40+
2.14 to 2.28, effectively dropping support for Debian 8 and 9, Ubuntu
41+
13.10 through 18.04, Fedora 19 to 28, and RHEL/Centos 7.
3842

3943
0.24.0 (released 2025-08-17)
4044
============================

0 commit comments

Comments
 (0)