From 6eb2bd1265ae7b8493f3d3d5eb53bd2c59651876 Mon Sep 17 00:00:00 2001 From: Vangelis Banos Date: Sun, 9 Jul 2023 10:02:13 +0000 Subject: [PATCH] Drop idna==2.10 version lock There is no need to use such an old `idna` version. The latest works with py35+ and all tests pass. Newer `idna` supports the latest Unicode standard and latest python versions. https://github.com/kjd/idna/blob/master/HISTORY.rst --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fdebe60..a6d8512 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ deps = [ 'requests>=2.0.1', 'PySocks>=1.6.8', 'cryptography>=2.3,<40', - 'idna==2.10', + 'idna', 'PyYAML>=5.1', 'cachetools', 'rfc3986>=1.5.0',