| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
I just tested podman run --rm --interactive --tty alpine:edge: I still get musl 1.2.5. ~ # apk info musl (...) musl-1.2.5-r21 description: the musl c library (libc) implementation musl-1.2.5-r21 webpage: https://musl.libc.org/ musl-1.2.5-r21 installed size: 650 KiB I would prefer to wait until musl 1.2.6 final is released and available in Alpine Linux. |
Sorry, something went wrong.
|
@vstinner Thanks for the review. Yes, I just double-checked and alpine:edge still defaults to musl-1.2.5. I previously ran apk add --no-cache musl-dev, that's why I got 1.2.6-r2.
No problem, let's wait until 1.2.6 is officially included in the default version. |
Sorry, something went wrong.
|
https://musl.libc.org/releases.html tells me that musl 1.2.6 was released in March 20, 2026.
@weixlu: Hi. Can you check if it's the case now? |
Sorry, something went wrong.
|
@vstinner Ah yes, thanks for reminder. I have verified that musl 1.2.6 is now officially included $ docker run --rm alpine:edge apk info musl
musl-1.2.6-r2 description:
the musl c library (libc) implementation
musl-1.2.6-r2 webpage:
https://musl.libc.org/
musl-1.2.6-r2 installed size:
706 KiBAlso I've run test_math and it looks good. So I think this PR is ready to go |
Sorry, something went wrong.
There was a problem hiding this comment.
I confirm that all FMA tests of test_math pass on the latest Alpine Linux with musl-1.2.6-r2.
~/cpython # apk info musl musl-1.2.6-r2 description: the musl c library (libc) implementation musl-1.2.6-r2 webpage: https://musl.libc.org/ musl-1.2.6-r2 installed size: 654 KiB ~/cpython # ./python Python 3.16.0a0 (heads/main:fcfa919, Aug 11 2026, 13:30:35) [GCC 15.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from test import support >>> support.linked_to_musl() (1, 2, 6)
Sorry, something went wrong.
|
GH-155753 is a backport of this pull request to the 3.13 branch. |
Sorry, something went wrong.
|
GH-155754 is a backport of this pull request to the 3.14 branch. |
Sorry, something went wrong.
|
GH-155755 is a backport of this pull request to the 3.15 branch. |
Sorry, something went wrong.
|
Merged, thanks for the change. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Proposal:
#131313 fix many tests on Alpine Linux (musl C library). About test_fma_zero_result, it says
# gh-131032: musl is fixed but the fix is not yet released; when the fixed # version is known change this to: # or support.linked_to_musl() < (1, <m>, <p>)And now musl 1.2.6 is available, and I have verified that the test can pass. So let's enable it.
I also test the older version