From ba5c5cbf94effd39b9f59d38c7effac9cefe9452 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 20 Sep 2017 14:50:06 -0400 Subject: [PATCH] just source dist Signed-off-by: Kenneth Reitz --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ab22a0d5..c3b26e93 100644 --- a/setup.py +++ b/setup.py @@ -59,8 +59,8 @@ class UploadCommand(Command): except FileNotFoundError: pass - self.status('Building Source distribution & Universal wheel…') - os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable)) + self.status('Building Source distribution…') + os.system('{0} setup.py sdist'.format(sys.executable)) self.status('Uploading the package to PyPi via Twine…') os.system('twine upload dist/*')