-
-
Notifications
You must be signed in to change notification settings - Fork 259
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
Support abi types for python 2.x #213
Comments
confirming this is indeed an issue. repro:
|
I added a PR for this in #214. But not quite sure if the implementation is 100% accurate since I couldn't find much documentation online regarding py2.x ABI tags. |
Awesome! Thanks for the quick fix! |
ghost
mentioned this issue
Apr 7, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently pex only supports abi types like 'dmu' for python 3: https://github.com/pantsbuild/pex/blob/f5721a98f21dc680a0f541cede1afa724d2a4159/pex/pep425.py#L102
I built a numpy wheel on linux, and it has filename numpy-1.10.4-cp27-cp27mu-linux_x86_64.whl. Because there is no support for abi type mu for python 2.7, pex doesn't think it's a valid package for numpy on linux_x86_64.
The text was updated successfully, but these errors were encountered: