From 7bfe5f8a319bbcc62d637b28078c05caef8ee9d0 Mon Sep 17 00:00:00 2001 From: wuzewu Date: Fri, 28 Jun 2019 20:56:48 +0800 Subject: [PATCH] Remove pyahocorasick requirement --- requirements.txt | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 371add47..b6438ae6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,3 @@ six >= 1.10.0 chardet == 3.0.4 requests pandas -pyahocorasick diff --git a/setup.py b/setup.py index e126d983..ba6ea6a4 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ max_version, mid_version, min_version = python_version() REQUIRED_PACKAGES = [ 'numpy >= 1.12.0', 'six >= 1.10.0', 'pandas', 'protobuf >= 3.1.0', 'pyyaml', - 'Pillow', 'requests', "visualdl >= 1.3.0", "pyahocorasick" + 'Pillow', 'requests', "visualdl >= 1.3.0" ] if max_version < 3: -- GitLab