From 827e140cacdc8f7669102c1b45a0fe0ae3dc15a1 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 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65cc0e011..eb49aedff 100644 --- a/setup.py +++ b/setup.py @@ -43,8 +43,10 @@ extras_require = { 'typing-extensions>=4.3,<5', ], 'speed': [ - 'aiohttp[speedups]', 'orjson>=3.5.4', + 'aiodns>=1.1', + 'Brotli', + 'cchardet==2.1.7; python_version < "3.10"', ], 'test': [ 'coverage[toml]',