On Tue, 28 Oct 2014 14:44:22 +0000 Paul Moore <p.f.moore@gmail.com> wrote:
Can you see what the following says (results here are from my Windows Python 3.4 system)?
from wheel.pep425tags import get_supported ['-'.join(t) for t in get_supported()] ['cp34-none-win_amd64', 'cp34-none-any', 'cp3-none-any', 'cp33-none-any', 'cp32-none-any', 'cp31-none-any', 'cp30-none-any', 'py34-none-any', 'py3-none-any', 'py33-none-any', 'py32-none-any', 'py31-none-any', 'py30-none-any']
I suspect you might be missing the combination "py2" with an architecture other than "any".
Does matching really happen that way? Here it is anyway. There's no "py2" at all:
['-'.join(t) for t in get_supported()] ['cp34-cp34m-linux_x86_64', 'cp34-abi3-linux_x86_64', 'cp34-none-linux_x86_64', 'cp34-none-any', 'cp3-none-any', 'cp33-none-any', 'cp32-none-any', 'cp31-none-any', 'cp30-none-any', 'py34-none-any', 'py3-none-any', 'py33-none-any', 'py32-none-any', 'py31-none-any', 'py30-none-any']
Regards Antoine.