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
The error seems to stem from the command:
twine upload --repository-url https://test.pypi.org/legacy/ dist/* reusing the previous package version.
To fix this, try this:
twine upload --skip-existing --repository-url https://test.pypi.org/legacy/ dist/*