I\'ve uploaded my Python package to PyPI. But now I made new version of my package and need to upload it. I tried to make same progress which I did when upload the package first
Can get that error for following reasons:
setup.py
Solution:
setup.py
. python setup.py bdist_wheel
.twine upload --skip-existing dist/*
As mentioned by @dustin, dist file of same name cannot be uploaded again.