From 23b5ec4ae935673c023f8103dfbc01d7a4ff9027 Mon Sep 17 00:00:00 2001 From: DataGreed Date: Tue, 5 Apr 2022 17:49:31 +0100 Subject: [PATCH] Update upload_to_pypi.sh --- upload_to_pypi.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/upload_to_pypi.sh b/upload_to_pypi.sh index 8596710..cf6d92a 100644 --- a/upload_to_pypi.sh +++ b/upload_to_pypi.sh @@ -1,4 +1,6 @@ +deactivate +rm -rf dist/* python3 -m pip install --user --upgrade setuptools wheel python3 setup.py sdist bdist_wheel python3 -m pip install --user --upgrade twine -python3 -m twine upload --repository --verbose pypi dist/* +python3 -m twine upload --repository pypi dist/* --verbose