From 585ff092f97d6cb67898fcbf9dc114d6405f64c6 Mon Sep 17 00:00:00 2001 From: WillPlatnick Date: Tue, 22 Jul 2014 19:56:46 -0400 Subject: [PATCH] Use newer PyOpenSSL The version of PyOpenSSL (0.13.1) has issues compiling, which means pip-accel can't install it. https://bugs.launchpad.net/pyopenssl/+bug/1266521 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f0481af3..6f060956 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ install_requires = [ 'urllib3>=1.7', - 'pyOpenSSL>=0.13.1', + 'pyOpenSSL>=0.14', ] test_requires = [