From c3ee87df2536fec744b4e146a9ce9cd8d44a7b9b Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 25 Jun 2024 16:38:37 +0200 Subject: [PATCH] Chore: Improve `twine` command within `release` task Use `--skip-existing` option. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4f95edc..4631ff6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -277,7 +277,7 @@ lint = [ release = [ { cmd = "python -m build" }, - { cmd = "twine upload dist/*" }, + { cmd = "twine upload --skip-existing dist/*" }, ] test = [