From 2f3b0afc4fbba2e7760423418b64c0a18ae1a309 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 17 Jan 2023 09:21:10 -0500 Subject: [PATCH] Revert "Revert "Remove chardet version upper limit"" This reverts commit 09cb41ce5b5d8800d00e2ead9c8a95cc2e4e767a. Original PR which removed upper bound: https://github.com/datalad/datalad/pull/7029 Debians now have 5.1.0, and we can't package while demanding an outdated chardet. Let's see again if we really need to limit upper version. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c93ce10ca4..b5bd760bc2 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ requires = { 'core': [ 'platformdirs', - 'chardet>=3.0.4, <5.0.0', # rarely used but small/omnipresent + 'chardet>=3.0.4', # rarely used but small/omnipresent 'colorama; platform_system=="Windows"', 'distro; python_version >= "3.8"', 'importlib-metadata >=3.6; python_version < "3.10"',