Skip to content

Commit

Permalink
Fix setup.py and setup.cfg dependencies for secure extra (urllib3#1497)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Dec 10, 2018
1 parent 0aa3e24 commit f80ff34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions setup.cfg
Expand Up @@ -11,9 +11,9 @@ provides-extra =
secure
socks
requires-dist =
pyOpenSSL>=0.14; python_version=="2.7" and extra == 'secure'
cryptography>=1.3.4; python_version=="2.7" and extra == 'secure'
idna>=2.0.0; python_version=="2.7" and extra == 'secure'
pyOpenSSL>=0.14; extra == 'secure'
cryptography>=1.3.4; extra == 'secure'
idna>=2.0.0; extra == 'secure'
certifi; extra == 'secure'
ipaddress; python_version=="2.7" and extra == 'secure'
PySocks>=1.5.6,<2.0,!=1.5.7; extra == 'socks'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -65,11 +65,11 @@
test_suite='test',
extras_require={
'secure': [
'pyOpenSSL >= 0.14',
'pyOpenSSL>=0.14',
'cryptography>=1.3.4',
'idna>=2.0.0',
'certifi',
"ipaddress",
"ipaddress; python_version=='2.7'",
],
'socks': [
'PySocks>=1.5.6,<2.0,!=1.5.7',
Expand Down

0 comments on commit f80ff34

Please sign in to comment.