From b324031ee683005be0307e3b323c4709ce3a01eb Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 11 Nov 2014 18:41:09 -0500 Subject: [PATCH] Disable those new requirements because pip requires gcc to install them --- python_apps/airtime_analyzer/setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/python_apps/airtime_analyzer/setup.py b/python_apps/airtime_analyzer/setup.py index 3694e6fe5..0816f8d14 100644 --- a/python_apps/airtime_analyzer/setup.py +++ b/python_apps/airtime_analyzer/setup.py @@ -29,10 +29,11 @@ setup(name='airtime_analyzer', 'mock', 'python-daemon', 'requests', - # These next 3 are required for requests to support SSL with SNI. This is extremely important. Learned this the hard way... - 'ndg-httpsclient', - 'pyasn1', - 'pyopenssl' + # These next 3 are required for requests to support SSL with SNI. Learned this the hard way... + # What sucks is that GCC is required to pip install these. + #'ndg-httpsclient', + #'pyasn1', + #'pyopenssl' ], zip_safe=False, data_files=data_files)