Updated requirements for airtime_analyzer to make python-requests
support SNI properly
This commit is contained in:
parent
52b0db5ccd
commit
63b357f0ee
|
@ -29,6 +29,10 @@ setup(name='airtime_analyzer',
|
||||||
'mock',
|
'mock',
|
||||||
'python-daemon',
|
'python-daemon',
|
||||||
'requests',
|
'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'
|
||||||
],
|
],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
data_files=data_files)
|
data_files=data_files)
|
||||||
|
|
Loading…
Reference in New Issue