Skip to content

Commit

Permalink
Upgrade to chardet 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Dec 11, 2020
1 parent d3e0f73 commit 516f84f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions requests/__init__.py
Expand Up @@ -65,10 +65,8 @@ def check_compatibility(urllib3_version, chardet_version):
# Check chardet for compatibility.
major, minor, patch = chardet_version.split('.')[:3]
major, minor, patch = int(major), int(minor), int(patch)
# chardet >= 3.0.2, < 3.1.0
assert major == 3
assert minor < 1
assert patch >= 2
# chardet >= 3.0.2, < 5.0.0
assert (3, 0, 2) <= (major, minor, patch) < (5, 0, 0)


def _check_cryptography(cryptography_version):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -42,7 +42,7 @@ def run_tests(self):
packages = ['requests']

requires = [
'chardet>=3.0.2,<4',
'chardet>=3.0.2,<5',
'idna>=2.5,<3',
'urllib3>=1.21.1,<1.27',
'certifi>=2017.4.17'
Expand Down

0 comments on commit 516f84f

Please sign in to comment.