fix: Incorrect manylinux version in linux wheels#1327
Merged
Conversation
0b7e052 to
8670e61
Compare
8670e61 to
93253b1
Compare
ss2165
approved these changes
Dec 18, 2025
github-merge-queue bot
pushed a commit
that referenced
this pull request
Jan 15, 2026
🤖 I have created a release *beep* *boop* --- ## [0.12.14](tket-py-v0.12.13...tket-py-v0.12.14) (2026-01-15) ### Features * make PytketHugrPass store a list of passes ([#1360](#1360)) ([498dd3a](498dd3a)) * Reduced glibc version requirement to 2.34 ([#1327](#1327)) ([498dd3a](498dd3a)) * Remove order edges in NormalizeGuppy pass ([#1326](#1326)) ([dbfffd5](dbfffd5)), closes [#1325](#1325) * Use constant folding by default on NormalizeGuppy ([#1323](#1323)) ([6f11024](6f11024)) ### Bug Fixes * Incorrect manylinux version in linux wheels ([#1327](#1327)) ([498dd3a](498dd3a)) * Wrongly reused qubit IDs in pytket encoding ([#1358](#1358)) ([498dd3a](498dd3a)) ### Documentation * update example notebook after Guppy optimization fixes ([#1357](#1357)) ([7487e3a](7487e3a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: Agustín Borgna <[email protected]>
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.
The linux-gnu wheel builds were incorrectly stating we support
manylinux2014(glibc 2.17).The wheels include the
tket-c-apilibrary, which is built directly on the container and hence uses the system's glibc version.For the supported
ubuntu 24.04runner, that isglibc 2.39.After some investigation, it seems that if we change the conan profile used to build
tket-c-apifrom-gcc14to-gcc13the resulting.soonly requiresglibc 2.34.This is just a patch to ensure the wheels we built correctly announce their properties.
The issue for actually fixing the root problem is here: #1272
Test build