From e9d832abc32da0d56ceed591d272fa507397eaf0 Mon Sep 17 00:00:00 2001 From: Ping Yu <4018+pyu10055@users.noreply.github.com> Date: Mon, 5 Oct 2020 12:15:31 -0700 Subject: [PATCH] fix numpy version mismatch --- tfjs-converter/python/requirements-exp.txt | 8 -------- tfjs-converter/python/requirements.txt | 7 +++---- tfjs-inference/python/requirements.txt | 3 +-- 3 files changed, 4 insertions(+), 14 deletions(-) delete mode 100644 tfjs-converter/python/requirements-exp.txt diff --git a/tfjs-converter/python/requirements-exp.txt b/tfjs-converter/python/requirements-exp.txt deleted file mode 100644 index 3d3772bf904..00000000000 --- a/tfjs-converter/python/requirements-exp.txt +++ /dev/null @@ -1,8 +0,0 @@ -h5py>=2.8.0 -numpy>=1.16.4,<1.19.0 -six>=1.12.0 -tf-nightly-cpu>=2.4.0.dev20200806,<3 -tensorflow-hub==0.7.0 -PyInquirer==1.0.3 -pylint==1.9.4; python_version < '3.0' -pylint==2.5.0; python_version > '3.0' diff --git a/tfjs-converter/python/requirements.txt b/tfjs-converter/python/requirements.txt index 4293053e039..b936d2fe036 100644 --- a/tfjs-converter/python/requirements.txt +++ b/tfjs-converter/python/requirements.txt @@ -1,5 +1,4 @@ -h5py>=2.8.0 -numpy>=1.16.4,<1.19.0 -six>=1.12.0 -tensorflow-hub>=0.7.0,<0.10 tensorflow>=2.1.0,<3 +h5py>=2.8.0,<3 +six>=1.12.0,<2 +tensorflow-hub>=0.7.0,<0.10 diff --git a/tfjs-inference/python/requirements.txt b/tfjs-inference/python/requirements.txt index 4d0f06afb97..7d94982a48d 100644 --- a/tfjs-inference/python/requirements.txt +++ b/tfjs-inference/python/requirements.txt @@ -1,2 +1 @@ -numpy>=1.16.4, <1.19.0 -tensorflow-cpu>=2.1.0, <3 +tensorflow>=2.1.0, <3