-
Bug DescriptionBuildmaturin build Built wheel for abi3 Python ≥ 3.7 to ***-cp37-abi3-manylinux_2_24_x86_64.whl` Installpip install ***-cp37-abi3-manylinux_2_24_x86_64.whl ERROR: ***-cp37-abi3-manylinux_2_24_x86_64.whl is not a supported wheel on this platform. I think, it should build It can work if I rename maturin build --compatibility manylinux2014 maturin failed
Caused by: Error ensuring manylinux_2_17 compliance
Caused by: Your library is not manylinux_2_17 (aka manylinux2014) compliant because of the presence of too-recent versioned symbols: ["libc.so.6 offending symbols: __cxa_thread_atexit_impl@@GLIBC_2.18"]. Consider building in a manylinux docker container GLIBC version is Your maturin version (
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You need to ensure your build environment is manylinux compliant not the other way around. If you want manylinux2014, build your wheels in a manylinux2014 docker container. |
Beta Was this translation helpful? Give feedback.
-
Why it can work when I rename |
Beta Was this translation helpful? Give feedback.
-
What you can also try instead of the manylinux container is to install |
Beta Was this translation helpful? Give feedback.
You need to ensure your build environment is manylinux compliant not the other way around. If you want manylinux2014, build your wheels in a manylinux2014 docker container.
See https://github.com/pypa/manylinux