Build Python wheels for manylinux 2.28 - #180
Open
jsturtevant wants to merge 1 commit into
Open
Conversation
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
jsturtevant
force-pushed
the
jsturtevant-build-manylinux-2-28-wheels
branch
from
August 14, 2026 21:35
48b9477 to
86f0496
Compare
There was a problem hiding this comment.
Pull request overview
This PR updates the Python wheel build/release pipelines so Linux backend wheels are produced with the manylinux_2_28_x86_64 policy (glibc 2.28+), addressing installation failures on older-HPC glibc environments by moving the existing just python-dist build into a digest-pinned PyPA manylinux container and enforcing tag validation.
Changes:
- Add
MANYLINUXsupport to the Python SDKJustfileand pass--manylinuxthrough tomaturin build. - Run Linux wheel builds in CI and publish workflows inside a pinned
quay.io/pypa/manylinux_2_28_x86_64container. - Add a workflow verification step that fails the build if produced backend wheels are not tagged
manylinux_2_28_x86_64.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/sdk/python/Justfile | Adds MANYLINUX env wiring to pass a specific manylinux policy into maturin builds for backend wheels. |
| .github/workflows/publish.yml | Builds Linux wheels inside the pinned manylinux_2_28 container and verifies resulting wheel tags before uploading artifacts for publishing. |
| .github/workflows/ci.yml | Updates the Linux wheelhouse build job to run in the manylinux_2_28 container and enforces the expected manylinux wheel tag in CI. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
Issue #141 requests Python backend wheels that install on HPC systems using glibc 2.28. The current Ubuntu-hosted builds produce
manylinux_2_34wheels, excluding those systems.This updates CI and publishing to run the existing
just python-distflow inside a digest-pinned official PyPAmanylinux_2_28environment. The Justfile passes the requested manylinux policy to maturin, and both workflows reject native wheels without the expectedmanylinux_2_28_x86_64tag. A single 2.28 wheel set remains compatible with glibc 2.34 and newer.Closes #141