Description
What's the problem this feature will solve?
Warehouse shows Python version
: cp36
for a cp36-abi3
binary wheel. This is confusing for users that are not familiar with abi3 wheels. An cp36-abi3
wheel works with any version of CPython >= 3.6,<4.0.
Describe the solution you'd like
Could you please add an indication that ab3
wheels work with any version equal or greater the Python version tag? Something like >= cp36
instead off cp36
would do the trick. If you want to go for the extra mile, then you could add a tooltip that explains what abi3
wheels are and that users need a recent version of pip to install them.
Additional context
The PyCA cryptography gets regular bug reports by users who are unable to install abi3 wheels due to outdated pip, for example pyca/cryptography#6548, pyca/cryptography#6451, pyca/cryptography#6454.