From 03dbd7a01dd609c12c1334d1ece343a281c87f24 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 18 Aug 2022 09:39:25 -0400 Subject: [PATCH] Fix cchardet being installed on Python >=3.10 This project is unmaintained now --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d436a979d..17b5973bd 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ extras_require = { 'orjson>=3.5.4', 'aiodns>=1.1', 'Brotli', - 'cchardet', + 'cchardet==2.1.7; python_version < "3.10"', ], 'test': [ 'coverage[toml]',