We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f171ebd commit 00ddac9Copy full SHA for 00ddac9
Maintaining.md
@@ -31,11 +31,12 @@ python -m pip install --upgrade twine
31
32
# upload to pypi / pip repository
33
# you will be asked for username and password for https://pypi.org account
34
-twine upload dist/*
+twine upload dist/* --skip-existing
35
36
# To upload to test pypi use this instead
37
-# twine upload --repository-url https://test.pypi.org/legacy/ dist/*;
+# twine upload --repository-url https://test.pypi.org/legacy/ dist/* --skip-existing;
38
```
39
+ - if fail to upload, clean up all files within your `./dist` folder, then re-try the above commands
40
41
## Dev & Test via Docker Compose
42
0 commit comments