-
Notifications
You must be signed in to change notification settings - Fork 262
How to not build manylinux1 build? #600
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
Comments
So you're not doing any more builds, but just getting the same wheel "for free", as it's
This is incorrect, though. First of all, Also, the |
This should also become clear if you look more closely at the build log, btw. You'll see that |
xref pypa/auditwheel#281 that might be of interest here |
Thank you very much for your explanation.
Maybe it's hard to find a machine that older than So for my case, only very few machines will use |
Keep in mind 99% of the time users get manylinux1 is because their pip is too old, not the OS. You need pip 19+ for manylinux2010, 19.3+ for manylinux2014, and 20.3+ for the new Glibc based manylinux_2_* names (which, however, will fix this problem in the future, I believe, as it supports all future versions too). Pip 9, for example, is the default on Ubuntu 18.04. Dropping manylinux1 is a good thing to do, it's going to be dropped (the image, not the auditwheel output) this summer due to extreme age. |
It would be nice to have a more friendly option to PyPI, for example, if |
I see, thanks for your explanation. |
You could also just delete the |
Please consider provide an option that can do it automatically. |
Again, it's not |
Ok, it seems Thanks for your replies, I guess this issue could be closed, regards. |
Once they do that that, we should check whether to pass that flag by default or not, I suppose. |
If use these options:
cibuildwheel
builds these wheels:I want to not build
manylinux1
build, if add this line:Then
manylinux2014_i686.whl
build is not built as well:The text was updated successfully, but these errors were encountered: