From 39766bcc0ee5149a98ea11a79270609a5ec99d87 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 17 Dec 2014 21:18:06 +0000 Subject: Enforce wheel check before allowing 'setup.pu publish' --- setup.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 2c56cd75..e64346d4 100755 --- a/setup.py +++ b/setup.py @@ -59,6 +59,9 @@ version = get_version('rest_framework') if sys.argv[-1] == 'publish': + if os.system("pip freeze | grep wheel"): + print "wheel not installed.\nUse `pip install wheel`.\nExiting." + sys.exit() 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:") -- cgit v1.2.3