Skip to content

Commit

Permalink
Bump pyOpenSSL dependency on Python 2.7 (#102)
Browse files Browse the repository at this point in the history
This avoids incompatibilities with older versions of OpenSSL and errors like this:

    AttributeError: 'module' object has no attribute 'SSL_ST_INIT'
  • Loading branch information
kislyuk authored Apr 3, 2018
1 parent 25bda6b commit c6ac8af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
extras_require={
':python_version == "2.7"': [
'enum34 >= 1.1.6, < 2',
'funcsigs >= 1.0.2, < 2'
'funcsigs >= 1.0.2, < 2',
'pyopenssl >= 17.5.0'
],
':python_version < "3.5"': ['typing >= 3.6.2, < 4'],
},
Expand Down

0 comments on commit c6ac8af

Please sign in to comment.