-
-
Notifications
You must be signed in to change notification settings - Fork 185
Add support for Python 3.14 on musl #568
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Failing with
resolved in 6c2a3b2 |
resolved in 5ba95ac |
resolved by 445dc69 |
As a note, I'm not sure if cpuid should be available or not — I'll follow-up on that after and open an upstream patch if needed. |
Now, just the freethreaded builds are failing
Moving that into #571 |
Ah I wonder if |
Indeed! Well that's better. |
@@ -416,7 +416,7 @@ if [ -n "${CPYTHON_DEBUG}" ]; then | |||
fi | |||
|
|||
# Explicitly enable mimalloc on 3.13+, it's already included by default but with this it'll fail | |||
# if it's missing from the system. The MUSL builds do not supprt mimalloc yet. | |||
# if it's missing from the system. The musl builds do not supprt mimalloc yet. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(funny this typo was retained — but this line is deleted in #571)
# freethreaded builds require mimalloc which is not available on musl yet | ||
# build_options_conditional: | ||
# - options: | ||
# - freethreaded+debug | ||
# - freethreaded+noopt | ||
# - freethreaded+lto | ||
# minimum-python-version: "3.13" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feels weird to add these in this PR but shrug
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They were enabled initially then toggled off — I'd probably omit them if I hadn't fixed it in the next change.
Extends #568 --------- Co-authored-by: Aria Desires <[email protected]>
Closes #558
Follow-up to #443