We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf8c97 commit 63e3e2eCopy full SHA for 63e3e2e
1 file changed
src/requests/__init__.py
@@ -76,7 +76,7 @@ def check_compatibility(urllib3_version, chardet_version, charset_normalizer_ver
76
major, minor, patch = chardet_version.split(".")[:3]
77
major, minor, patch = int(major), int(minor), int(patch)
78
# chardet_version >= 3.0.2, < 6.0.0
79
- assert (3, 0, 2) <= (major, minor, patch) < (6, 0, 0)
+ assert (3, 0, 2) <= (major, minor, patch) < (7, 0, 0)
80
elif charset_normalizer_version:
81
major, minor, patch = charset_normalizer_version.split(".")[:3]
82
0 commit comments