From c70c1c520d099e13bda1d487b069944c5d5358ee Mon Sep 17 00:00:00 2001 From: Zhou Wei <52485244+zhouwei25@users.noreply.github.com> Date: Tue, 10 Nov 2020 18:08:47 +0800 Subject: [PATCH] make Numpy version is below 1.19.3 (#28510) --- python/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/requirements.txt b/python/requirements.txt index 138220b4057..12f36b37085 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,6 +1,7 @@ requests>=2.20.0 numpy>=1.13, <=1.16.4 ; python_version<"3.5" -numpy>=1.13 ; python_version>="3.5" +numpy>=1.13 ; python_version>="3.5" and platform_system != "Windows" +numpy>=1.13, <=1.19.3 ; python_version>="3.5" and platform_system == "Windows" protobuf>=3.1.0 gast==0.3.3 scipy>=0.19.0, <=1.2.1 ; python_version<"3.5" -- GitLab