Disable those new requirements because pip requires gcc to install them
This commit is contained in:
parent
63b357f0ee
commit
b324031ee6
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue