From 33cf965f7271ab4978ed551754db37865c4085db Mon Sep 17 00:00:00 2001 From: Naor Livne Date: Wed, 7 Jul 2021 16:25:20 +0300 Subject: [PATCH] Allow idna 3.x to be installed on Python 3.x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mickaƫl Schoentgen Co-authored-by: Seth Michael Larson --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 27f3948c66..1e5ffaa2f0 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,8 @@ def run_tests(self): requires = [ 'charset_normalizer~=2.0.0; python_version >= "3"', 'chardet>=3.0.2,<5; python_version < "3"', - 'idna>=2.5,<3', + 'idna>=2.5,<3; python_version < "3"', + 'idna>=2.5,<4; python_version >= "3"', 'urllib3>=1.21.1,<1.27', 'certifi>=2017.4.17'