42 lines
1.6 KiB
Diff
42 lines
1.6 KiB
Diff
From 8cb31a4ce6b165795d049cbb278e20b14d53ed02 Mon Sep 17 00:00:00 2001
|
|
From: starlet-dx <15929766099@163.com>
|
|
Date: Sat, 5 Nov 2022 14:53:01 +0800
|
|
Subject: [PATCH 1/1] Update Dependency with 'chardet>=3.0.2,<6'
|
|
|
|
---
|
|
requests/__init__.py | 4 ++--
|
|
setup.py | 2 +-
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/requests/__init__.py b/requests/__init__.py
|
|
index 0ac7713..0708d11 100644
|
|
--- a/requests/__init__.py
|
|
+++ b/requests/__init__.py
|
|
@@ -74,8 +74,8 @@ def check_compatibility(urllib3_version, chardet_version, charset_normalizer_ver
|
|
if chardet_version:
|
|
major, minor, patch = chardet_version.split('.')[:3]
|
|
major, minor, patch = int(major), int(minor), int(patch)
|
|
- # chardet_version >= 3.0.2, < 5.0.0
|
|
- assert (3, 0, 2) <= (major, minor, patch) < (5, 0, 0)
|
|
+ # chardet_version >= 3.0.2, < 6.0.0
|
|
+ assert (3, 0, 2) <= (major, minor, patch) < (6, 0, 0)
|
|
elif charset_normalizer_version:
|
|
major, minor, patch = charset_normalizer_version.split('.')[:3]
|
|
major, minor, patch = int(major), int(minor), int(patch)
|
|
diff --git a/setup.py b/setup.py
|
|
index de86a91..5974e66 100755
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -103,7 +103,7 @@ setup(
|
|
'security': [],
|
|
'socks': ['PySocks>=1.5.6, !=1.5.7'],
|
|
'socks:sys_platform == "win32" and python_version == "2.7"': ['win_inet_pton'],
|
|
- 'use_chardet_on_py3': ['chardet>=3.0.2,<5']
|
|
+ 'use_chardet_on_py3': ['chardet>=3.0.2,<6']
|
|
},
|
|
project_urls={
|
|
'Documentation': 'https://requests.readthedocs.io',
|
|
--
|
|
2.30.0
|
|
|