Skip to content

Commit

Permalink
feat(dependencies): fix SNI errors on python2 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc authored and TheKevJames committed Mar 22, 2017
1 parent 277b65f commit c554126
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 @@ -30,7 +30,8 @@
setup_requires=['pytest-runner'],
tests_require=['mock', 'pytest', 'sh>=1.08'],
extras_require={
'yaml': ['PyYAML>=3.10']
'yaml': ['PyYAML>=3.10'],
':python_version < "3"': ['urllib3[secure]'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit c554126

Please sign in to comment.