From a333cb25ddf15265d3b555564e5540c898cc15aa Mon Sep 17 00:00:00 2001 From: danielhrisca Date: Wed, 25 Oct 2023 16:34:56 +0300 Subject: [PATCH] cChardet is unmentained - use faust-cchardet instead --- README.md | 2 +- doc/intro.rst | 2 +- requirements_exe_build.txt | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 58d491b58..93f2b1cfe 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ other optional dependencies * PySide6 : for GUI tool * pyqtgraph : for GUI tool and Signal plotting * matplotlib : as fallback for Signal plotting -* cChardet : to detect non-standard Unicode encodings +* faust-cchardet : to detect non-standard Unicode encodings * chardet : to detect non-standard Unicode encodings * pyqtlet2 : for the GPS window * isal : for faster zlib compression/decompression diff --git a/doc/intro.rst b/doc/intro.rst index 06a3014bb..60dbd46f7 100644 --- a/doc/intro.rst +++ b/doc/intro.rst @@ -96,7 +96,7 @@ other optional dependencies * PySide6 : for GUI tool * pyqtgraph : for GUI tool and Signal plotting (preferably the latest develop branch code) * matplotlib : as fallback for Signal plotting -* cChardet : to detect non-standard Unicode encodings +* faust-cchardet : to detect non-standard Unicode encodings * chardet : to detect non-standard Unicode encodings * pyqtlet2 : for the GPS window * isal : for faster zlib compression/decompression diff --git a/requirements_exe_build.txt b/requirements_exe_build.txt index cb0db130f..ebfc665f6 100644 --- a/requirements_exe_build.txt +++ b/requirements_exe_build.txt @@ -17,7 +17,7 @@ h5py fastparquet hdf5storage snappy -cChardet==2.1.5 +faust-cchardet==2.1.19 chardet cryptography keyring diff --git a/setup.py b/setup.py index b6e95bb03..5caa64e98 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def _get_ext_modules(): # for example: # $ pip install -e .[dev,test] extras_require={ - "decode": ["cChardet==2.1.5", "chardet"], + "decode": ["faust-cchardet==2.1.19", "chardet"], "export": [ "fastparquet", "h5py",