Due to this line in setup.cfg:
https://github.com/jaraco/zipp/blob/v2.2.0/setup.cfg#L17
The wheel published to PyPi is limited to Python 3.6 and will not install on Python 3.7 or 3.8 (name has py36 and nothing else in it: zipp-2.2.0-py36-none-any.whl):
https://files.pythonhosted.org/packages/46/42/f2dd964b2a6b1921b08d661138148c1bcd3f038462a44019416f2342b618/zipp-2.2.0-py36-none-any.whl
The [options] say python_version >= 3.6, but the binary distribution setting is 3.6-only. One of these is not correct, and I suspect it's binary distribution setting. Assuming it is, the python-tag needs to be changed to either python-tag=py36.py37.py38 or to universal=1.
Due to this line in
setup.cfg:https://github.com/jaraco/zipp/blob/v2.2.0/setup.cfg#L17
The wheel published to PyPi is limited to Python 3.6 and will not install on Python 3.7 or 3.8 (name has
py36and nothing else in it:zipp-2.2.0-py36-none-any.whl):https://files.pythonhosted.org/packages/46/42/f2dd964b2a6b1921b08d661138148c1bcd3f038462a44019416f2342b618/zipp-2.2.0-py36-none-any.whl
The
[options]saypython_version >= 3.6, but the binary distribution setting is 3.6-only. One of these is not correct, and I suspect it's binary distribution setting. Assuming it is, thepython-tagneeds to be changed to eitherpython-tag=py36.py37.py38or touniversal=1.