From 656f6b451c219d9a8a33d4a441b28acb191a30db Mon Sep 17 00:00:00 2001 From: Toby Roseman Date: Mon, 10 Feb 2020 13:16:23 -0800 Subject: [PATCH] Upgrade coremltools version. Unfix numpy version. (#2996) --- scripts/requirements.txt | 4 ++-- src/python/setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/requirements.txt b/scripts/requirements.txt index d41ef6f872..39ac510edf 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -1,4 +1,4 @@ -coremltools==3.1 +coremltools==3.3 scipy==1.2.1 numpy==1.16.4 cython==0.29.10 @@ -28,4 +28,4 @@ wheel>=0.29.0 six>=1.12.0 requests>=2.9.1 pytest-cov>=2.7.1 -pre-commit>=1.21.0 \ No newline at end of file +pre-commit>=1.21.0 diff --git a/src/python/setup.py b/src/python/setup.py index 657b3a8975..38808ecb93 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -125,9 +125,9 @@ def run(self): long_description = f.read().decode("utf-8") install_requires = [ - "coremltools==3.1", + "coremltools==3.3", "decorator >= 4.0.9", - "numpy==1.16.4", + "numpy", "pandas >= 0.23.2", "pillow >= 5.2.0", "prettytable == 0.7.2",