Skip to content

Commit

Permalink
Specify minimum pyOpenSSL version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lorenzph committed Nov 19, 2015
1 parent 2128321 commit 6597b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@
'Programming Language :: Python :: 3.5',
),
extras_require={
'security': ['pyOpenSSL', 'ndg-httpsclient', 'pyasn1'],
'security': ['pyOpenSSL>=0.13', 'ndg-httpsclient', 'pyasn1'],
},
)

0 comments on commit 6597b53

Please sign in to comment.