From 63b357f0ee0ce43b65b4e518825f81062cf10610 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 11 Nov 2014 11:18:55 -0500 Subject: [PATCH] Updated requirements for airtime_analyzer to make python-requests support SNI properly --- python_apps/airtime_analyzer/setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python_apps/airtime_analyzer/setup.py b/python_apps/airtime_analyzer/setup.py index c47b05167..3694e6fe5 100644 --- a/python_apps/airtime_analyzer/setup.py +++ b/python_apps/airtime_analyzer/setup.py @@ -29,6 +29,10 @@ 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' ], zip_safe=False, data_files=data_files)