From e98745b8aa809acee9e0f4e5944fab14e2b2e2ca Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Mon, 5 Jan 2015 11:37:57 +0200 Subject: [PATCH] removing wheel upload from register command in setup.py --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index fc1dcb9e..dbf94618 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,6 @@ with open('VERSION') as version: # Helper commands. if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') - os.system('python setup.py bdist_wheel upload') print('You probably want to also tag the version now:') print(' git tag -a %s -m \'version %s\'' % (version, version)) print(' git push --tags')