From 2fe81c47871f14991c9c6b6c2db06e79ee142692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Fri, 23 Jun 2017 19:47:35 -0400 Subject: [PATCH] Remove wheel installed check --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 911c55e5..6402db00 100644 --- a/setup.py +++ b/setup.py @@ -65,9 +65,6 @@ def get_package_data(package): if sys.argv[-1] == 'publish': - if os.system('pip freeze | grep wheel'): - print('wheel not installed.\nUse `pip install wheel`.\nExiting.') - sys.exit() if os.system('pip freeze | grep twine'): print('twine not installed.\nUse `pip install twine`.\nExiting.') sys.exit()