Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit de438fb

Browse files
committed
Use --skip-existing when uploading via build_manylinux_wheels
1 parent a9a8b2d commit de438fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_manylinux_wheels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def main():
4444
'auditwheel repair --wheel-dir /dist /work/*.whl'.format(pip)
4545
)
4646
dists = tuple(os.path.join('dist', p) for p in os.listdir('dist'))
47-
return upload.main(('-r', 'pypi') + dists)
47+
return upload.main(('-r', 'pypi', '--skip-existing') + dists)
4848

4949

5050
if __name__ == '__main__':

0 commit comments

Comments
 (0)