[FLINK-40464][python] Build pyflink wheels on manylinux_2_28 - #29016
Open
florianvazelle wants to merge 2 commits into
Open
[FLINK-40464][python] Build pyflink wheels on manylinux_2_28#29016florianvazelle wants to merge 2 commits into
florianvazelle wants to merge 2 commits into
Conversation
florianvazelle
force-pushed
the
drop-manylinux2014
branch
from
August 25, 2026 09:49
03531b9 to
c451665
Compare
Contributor
Author
|
Relates #29013 I hadn't seen the PR before creating my own, but I'll still suggest my changes along with some more detailed explanations |
Collaborator
florianvazelle
force-pushed
the
drop-manylinux2014
branch
from
August 25, 2026 11:43
c451665 to
d404a83
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change
This pull request stops building pyflink Linux wheels on
manylinux2014(glibc 2.17), which is end of life, and builds them onmanylinux_2_28(glibc 2.28) instead.manylinux2014images are based on CentOS 7, which reached EOL on 30 June 2024 (pypa/manylinux, CentOS announcement).manylinux2014artifacts (python-pillow/Pillow#9528). Apache Beam >= 2.72 depends onpillow>=12.1.1,<13, so on CPython 3.10+ pip falls back to a Pillow sdist, which fails inside themanylinux2014container (missing jpeg headers).Brief change log
CIBW_MANYLINUX_X86_64_IMAGEtomanylinux_2_28Verifying this change
This change is a CI / packaging config update without unit-test coverage.
build_python_wheelson Linux should complete CPython 3.10+ instead of failing inCIBW_BEFORE_BUILDwhile compiling Pillowmanylinux_2_28_x86_64(glibc >= 2.28: RHEL/CentOS 8+, Debian 10+, Ubuntu 18.10+)Does this pull request potentially affect one of the following parts:
@Public(Evolving): noDocumentation