Skip to content

Commit

Permalink
Limit dependencies to major instead of minor (#5342)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjw296 committed Feb 18, 2020
1 parent e113020 commit c46f55b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def run_tests(self):
packages = ['requests']

requires = [
'chardet>=3.0.2,<3.1.0',
'idna>=2.5,<2.9',
'chardet>=3.0.2,<4',
'idna>=2.5,<3',
'urllib3>=1.21.1,<1.26,!=1.25.0,!=1.25.1',
'certifi>=2017.4.17'

Expand Down Expand Up @@ -102,7 +102,7 @@ def run_tests(self):
cmdclass={'test': PyTest},
tests_require=test_requirements,
extras_require={
'security': ['pyOpenSSL >= 0.14', 'cryptography>=1.3.4', 'idna>=2.0.0'],
'security': ['pyOpenSSL >= 0.14', 'cryptography>=1.3.4'],
'socks': ['PySocks>=1.5.6, !=1.5.7'],
'socks:sys_platform == "win32" and python_version == "2.7"': ['win_inet_pton'],
},
Expand Down

0 comments on commit c46f55b

Please sign in to comment.