Upgrade manylinux container from 2_17 to 2_28#1068
Merged
trunk-io[bot] merged 1 commit intomainfrom Apr 13, 2026
Merged
Conversation
|
😎 Merged directly without going through the merge queue, as the queue was empty and the PR was up to date with the target branch - details. |
8539149 to
94ff758
Compare
Update from manylinux2014 (glibc 2.17) to manylinux_2_28 (glibc 2.28). This fixes glibc mismatch issues when building on ubuntu-latest which has a newer glibc than the old manylinux2014 container. Note: This drops support for older systems that require manylinux2014 (e.g., AWS Glue). If Glue support is needed, see PR #1067 for an alternative fix that preserves manylinux2014 compatibility. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
94ff758 to
4bc0c4f
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1068 +/- ##
==========================================
+ Coverage 81.70% 81.96% +0.26%
==========================================
Files 69 69
Lines 14878 14878
==========================================
+ Hits 12156 12195 +39
+ Misses 2722 2683 -39 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
TylerJang27
approved these changes
Apr 13, 2026
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.
Summary
Updates the manylinux container from
2_17(manylinux2014, glibc 2.17) to2_28(manylinux_2_28, glibc 2.28).This also removes the stub_gen workaround from #1067 since it's no longer needed with the newer container.
Problem
GitHub recently updated
ubuntu-latestrunners with a newer glibc. The old manylinux2014 container has glibc 2.17 which can't run binaries built on ubuntu-latest, causing:Solution
Upgrade to manylinux_2_28 which has glibc 2.28, compatible with ubuntu-latest. This is simpler than the conditional stub_gen workaround.
Breaking Change
This drops support for systems that require manylinux2014 (e.g., AWS Glue).
Test plan
🤖 Generated with Claude Code