You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the linux wheels are not manylinux compliant.
I just had a problem similar to snap-stanford/snap#189 and it is caused by the wheels being built with a too recent version of GLIBC.
The manylinux policy https://www.python.org/dev/peps/pep-0513/#id40 requires that the wheel should be built with GLIBC <= 2.5 while here 2.27 was used.
Manylinux is a pep8 policy that assert that the wheels are usable on a
variety of Linux machines that satisfy standard requirements.
In order for a wheel to be manylinux compatible, it must respect some
requirements as well. They are described in
https://www.python.org/dev/peps/pep-0513/#the-manylinux1-policy
The current snap wheels do not satisfy these requirements (see snap-stanford#122), and
therefore cannot be flagged as Manylinux compatible.
In the wait of a solution that patches the wheel, this PR removes the incorrect flagging.
Hi,
It seems the linux wheels are not manylinux compliant.
I just had a problem similar to snap-stanford/snap#189 and it is caused by the wheels being built with a too recent version of GLIBC.
The manylinux policy https://www.python.org/dev/peps/pep-0513/#id40 requires that the wheel should be built with GLIBC <= 2.5 while here 2.27 was used.
I could try to fix this using https://github.com/matthew-brett/multibuild/ but I would like to be sure that the proposition would be accepted before starting the work.
For reference, I already have some experience with manylinux (https://github.com/BlueBrain/libsonata-wheels/ and https://github.com/BlueBrain/morphio-wheels/ are managed by myself)
Thanks
The text was updated successfully, but these errors were encountered: