Specify minimum pyOpenSSL version

urllib3 requires "set_tlsext_host_name" which was only added in
pyOpenSSL 0.13. As some distributions (e.g. Ubuntu 12.04) still ship an
older version enforce the correct minimum version during installation.
This commit is contained in:
Philip Lorenz
2015-11-19 20:05:03 +01:00
parent 2128321b85
commit 6597b53834
+1 -1
View File
@@ -69,6 +69,6 @@ setup(
'Programming Language :: Python :: 3.5',
),
extras_require={
'security': ['pyOpenSSL', 'ndg-httpsclient', 'pyasn1'],
'security': ['pyOpenSSL>=0.13', 'ndg-httpsclient', 'pyasn1'],
},
)