Replies: 6 comments 28 replies
-
Nice site! (https://mayeut.github.io/manylinux-timeline/ ). Tiny note, your colors cycle, so the final four items on the Python versions have the same colors as the initial ones. MPL has a 9 or 10 color cycler by default, I think. |
Beta Was this translation helpful? Give feedback.
-
When will 3.5 be dropped? |
Beta Was this translation helpful? Give feedback.
-
I want to drop manylinux1 for NumPy's next release (summer 2021). When NumPy does that, the other scientific python libraries will probably follow.
This is unfortunate. Is that true even for python 3.7+ ? |
Beta Was this translation helpful? Give feedback.
-
The problem with dropping manylinux1 is that pip will prefer to install-from-source than to use an older binary version by default. There is the |
Beta Was this translation helpful? Give feedback.
-
Binary wheels for scientific python (NumPy, SciPy, ...) will not be shipped in 2021 for python<=3.7 anyway, so I think it is fine to deprecate manylinux1. |
Beta Was this translation helpful? Give feedback.
-
My feeling is that now we're over a year after EOL, we should consider dropping CPython 2.7 altogether, soon. We can still point in docs to our final release that supports it, and users that really need it could run twice, like:
I suppose, in theory, we could accept bugfix PRs to a 1.9.x branch, if there's still a strong need when/if that breaks too. Thoughts? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
It's about time to drop support for CPython 2.7 !
manylinux
will soon merge themanylinux2014
branch inmaster
which is used to buildmanylinux2010
. There will now be a single branch / source of truth for what tools are installed inmanylinux
images with newerPEP600
images on the way.Rather than adding CPython 2.7 to
manylinux2014
, it will be dropped frommanylinux2010
once the merge happens.If
cibuildwheel
wants to keep supporting CPython 2.7, we'll have to add specific pinned images for this use-case incibuildwheel
.c.f. pypa/manylinux#428 (comment)
PS:
manylinux1
is not affected by this rewrite but support formanylinux1
will probably be dropped by the summer.Beta Was this translation helpful? Give feedback.
All reactions