Skip to content
Permalink
Browse files

Merge pull request #5688 from dan-blanchard/patch-1

Upgrade to chardet 4.x
  • Loading branch information
nateprewitt committed Dec 14, 2020
2 parents d3e0f73 + 516f84f commit b223291693402bdc2a20e58906eb026325b67f2d
Showing with 3 additions and 5 deletions.
  1. +2 −4 requests/__init__.py
  2. +1 −1 setup.py
@@ -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):
@@ -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'

0 comments on commit b223291

Please sign in to comment.