-
Notifications
You must be signed in to change notification settings - Fork 3k
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
pip 20.3 is unable to find (some?) wheel packages #9233
Comments
What is the wheel 20.2.4 finds for you? I suspect this is caused by a change in how pip (or rather, the underlying Can you try the following under both 20.3.1 and 20.2.4 and paste the output? from pip._vendor.packaging import tags
for t in tags.cpython_tags(): print(t) |
20.2.4 finds output of that snippet with 20.2.4:
and with 20.3.0:
|
Thanks, it seems like |
Hmm, on further inspection, I am not sure whether the current behaviour is a bug, or the previous version was. Could you open an issue on https://github.com/pypa/packaging and link to this issue, so we can continue the discussion there? I am not personally familiar with Linux enough to debug this issue. |
Is there now an open issue about this in https://github.com/pypa/packaging ? |
@craigds One more thing, can you run:
|
I can't reproduce this on what I think is a compatible system:
@craigds If you could tell us more about your platform/environment that this is being run in, it might help figure this out as well. |
thanks. I finally had some time to bisect our dockerfiles until I found the problem. Turns out we have So basically the 20.3+ behaviour is correct 👍 thanks for triaging this |
Environment
Description
Pip 20.3 finds & downloads the source tarball for
pillow==6.2.2
, rather than the wheel. Adding--only-binary :all:
just makes it fail to find the package altogether.Expected behavior
Pip 20.2.4 performs correctly and finds the wheel rather than the source tarball
How to Reproduce
Just try to install a specific pillow version.
The text was updated successfully, but these errors were encountered: