From eadaea9c8152ce36f24882e759a31ed51d2aa6ab Mon Sep 17 00:00:00 2001 From: Wong Hoi Sing Edison Date: Sun, 26 Jun 2022 10:59:22 +0800 Subject: [PATCH] Update Dependency with `chardet>=3.0.2,<6` https://github.com/chardet/chardet/releases/tag/5.0.0 was released on 2022-06-25 with remove of Python 3.6 support, which also align with our Python > 3.6 requirement. Signed-off-by: Wong Hoi Sing Edison --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ca7bc3a0cd..43c69fcfd2 100755 --- a/setup.py +++ b/setup.py @@ -123,7 +123,7 @@ def run_tests(self): extras_require={ "security": [], "socks": ["PySocks>=1.5.6, !=1.5.7"], - "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",