With both python 3.6 and 3.7, the command python setup.py bdist_wheel --plat-name=win_amd64
generates wheels for windows with the same name mypackage-0.8.0-py3-none-win_amd64
.
Is it possible to get python wheels for python 3.6 and 3.7, with the names mypackage-0.8.0-py36-none-win_amd64
and mypackage-0.8.0-py37-none-win_amd64
? How?
Note: Simply renaming the generated wheels makes the wheel uninstallable