From 73c9739f4a1a06d9ae30eb483dc5650556c2e14b Mon Sep 17 00:00:00 2001 From: pkuliuliu Date: Thu, 5 Aug 2021 09:56:31 +0800 Subject: [PATCH] update dependence --- requirements.txt | 2 +- setup.py | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2452c28..2c9d4b7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ numpy >= 1.17.0 scipy >= 1.5.2 matplotlib >= 3.2.1 -Pillow >= 2.0.0 +pillow >= 6.2.0 pytest >= 4.3.1 wheel >= 0.32.0 setuptools >= 40.8.0 diff --git a/setup.py b/setup.py index 4b2d5f7..31e6037 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from setuptools import setup from setuptools.command.egg_info import egg_info from setuptools.command.build_py import build_py -version = '1.3.0' +version = '1.4.0' cur_dir = os.path.dirname(os.path.realpath(__file__)) pkg_dir = os.path.join(cur_dir, 'build') @@ -129,8 +129,9 @@ setup( 'scipy >= 1.5.2', 'numpy >= 1.17.0', 'matplotlib >= 3.2.1', - 'Pillow >= 2.0.0', - 'scikit-learn >= 0.23.1' + 'pillow >= 6.2.0', + 'scikit-learn >= 0.23.1', + 'easydict >= 1.9', ], classifiers=[ 'License :: OSI Approved :: Apache Software License'