From 1522f977fe8fd71ea55c733f0032339d643af87b Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Wed, 3 Apr 2019 10:49:40 +0200 Subject: [PATCH] work around stale files in wheel (pypa/wheel#147) --- release.py | 1 + 1 file changed, 1 insertion(+) diff --git a/release.py b/release.py index 42350bf3..0fd9ad66 100755 --- a/release.py +++ b/release.py @@ -51,6 +51,7 @@ def tag_and_push(): def pypi(): print("--- PYPI -------------------------------------------------------------") + system("rm -rf build") system("python3 setup.py sdist bdist_wheel") system("twine check dist/*") system("twine upload --skip-existing --sign dist/*")