Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion misc/upload-pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def tmp_twine() -> Iterator[Path]:
def upload_dist(dist: Path, dry_run: bool = True) -> None:
with tmp_twine() as twine:
files = [item for item in dist.iterdir() if item_ok_for_pypi(item.name)]
cmd: list[Any] = [twine, "upload"]
cmd: list[Any] = [twine, "upload", "--skip-existing"]
cmd += files
if dry_run:
print("[dry run] " + " ".join(map(str, cmd)))
Expand Down