From 94a8517a361214dc6ff0c8ce575c10408f903f73 Mon Sep 17 00:00:00 2001 From: Robert Haase Date: Thu, 14 Sep 2023 10:29:37 +0200 Subject: [PATCH] fix deployment --- deploy.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy.bat b/deploy.bat index eb35ca7..8dd434d 100644 --- a/deploy.bat +++ b/deploy.bat @@ -1,10 +1,10 @@ -python -m pip install --user --upgrade setuptools wheel +call python -m pip install --user --upgrade setuptools wheel -python setup.py sdist bdist_wheel +call python setup.py sdist bdist_wheel -python -m pip install --user --upgrade twine +call python -m pip install --user --upgrade twine -python -m twine upload --repository pypi dist/* +call python -m twine upload --repository pypi dist/*