From 08c46897a611e79fa026fd10dbe5a41e2ec85253 Mon Sep 17 00:00:00 2001 From: Drakan1 Date: Wed, 22 May 2024 00:23:06 +0100 Subject: [PATCH] Replace dependency of cchardet with faust-cchardet --- README.md | 2 +- docs/index.rst | 2 +- requirements-ci.txt | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ab7dd8b..e21920f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Modern library that is more than just a wrapper for the Challonge web API * `aiohttp` Optional: - * `cchardet` faster replacement for chardet, as mentionned on the aiohttp page + * `faust-cchardet` faster replacement for chardet, as mentionned on the aiohttp page * `aiodns` for speeding up DNS resolving, highly recommended by aiohttp # Python version support diff --git a/docs/index.rst b/docs/index.rst index 3d90a40..7ae6fc6 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -32,7 +32,7 @@ Dependencies - python 3.5+ - aiohttp - - cchardet + - faust-cchardet - aiodns diff --git a/requirements-ci.txt b/requirements-ci.txt index d6f8347..19c7811 100644 --- a/requirements-ci.txt +++ b/requirements-ci.txt @@ -1,4 +1,4 @@ aiohttp==3.6.0 -cchardet +faust-cchardet aiodns coveralls diff --git a/setup.py b/setup.py index f84bd8d..1797c7f 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ packages=find_packages(), install_requires=requirements, extras_require={ - 'speed': ['cchardet', 'aiodns'] + 'speed': ['faust-cchardet', 'aiodns'] }, include_package_data=True,