From cab5b8aa85256da0123c85427c9152cfe5546fa1 Mon Sep 17 00:00:00 2001 From: Steffy-zxf <48793257+Steffy-zxf@users.noreply.github.com> Date: Thu, 23 May 2019 11:13:17 +0800 Subject: [PATCH] Add the required lib 'chardet' in setup.py (#41) --- setup.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 02187860..c6baa6c3 100644 --- a/setup.py +++ b/setup.py @@ -30,12 +30,8 @@ def python_version(): max_version, mid_version, min_version = python_version() REQUIRED_PACKAGES = [ - 'numpy >= 1.12.0', - 'six >= 1.10.0', - 'protobuf >= 3.1.0', - 'pyyaml', - 'Pillow', - "visualdl >= 1.3.0", + 'numpy >= 1.12.0', 'six >= 1.10.0', 'protobuf >= 3.1.0', 'pyyaml', 'Pillow', + "visualdl >= 1.3.0", "chardet == 3.0.4" ] if max_version < 3: -- GitLab