From 343d0bcdeb6981ca90673de342eb6064ca62c24e Mon Sep 17 00:00:00 2001 From: chriskiehl Date: Thu, 24 Aug 2017 19:19:12 -0700 Subject: [PATCH] Update pip deploy script to use twine --- pip_deploy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pip_deploy.py b/pip_deploy.py index 87c3f13..3a8710f 100644 --- a/pip_deploy.py +++ b/pip_deploy.py @@ -1,4 +1,5 @@ import subprocess subprocess.call('python setup.py sdist') -subprocess.call('python setup.py sdist bdist_wheel upload') +subprocess.call('python setup.py bdist_wheel --universal') +subprocess.call('twine upload dist/*')