From 01d8051c03c438870a821d713749ba998bd9ffcf Mon Sep 17 00:00:00 2001 From: Pawel Troka Date: Fri, 10 Aug 2018 11:03:30 +0200 Subject: [PATCH] Updated deploy script, so it will always build wheel for both Python 2 and Python 3 --- deploy.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deploy.bat b/deploy.bat index 52cf38f..ee744b1 100644 --- a/deploy.bat +++ b/deploy.bat @@ -1,2 +1,3 @@ -python setup.py sdist bdist_wheel -twine upload -u USERNAME -p "PASSWORD" dist/* \ No newline at end of file +python setup.py sdist +python setup.py bdist_wheel --universal +twine upload dist/* \ No newline at end of file