From f097f36ba3a823eb968b49450adc79e15c40495f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 18 Feb 2021 04:24:38 +0000 Subject: [PATCH 1/2] chore(deps): update dependency scipy to v1.6.1 --- appengine/flexible/scipy/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine/flexible/scipy/requirements.txt b/appengine/flexible/scipy/requirements.txt index 2d88852fbf6..4d35ed38263 100644 --- a/appengine/flexible/scipy/requirements.txt +++ b/appengine/flexible/scipy/requirements.txt @@ -4,4 +4,4 @@ imageio==2.9.0 numpy==1.20.0; python_version >= '3.7' numpy==1.19.5; python_version < '3.7' pillow==8.1.0 -scipy==1.5.4 +scipy==1.6.1 From 8e61a9b2418592f755d51373a5d9b23830015b86 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Thu, 18 Feb 2021 09:49:16 -0700 Subject: [PATCH 2/2] fix: split requirement by python version --- appengine/flexible/scipy/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appengine/flexible/scipy/requirements.txt b/appengine/flexible/scipy/requirements.txt index 4d35ed38263..c58e595fb0f 100644 --- a/appengine/flexible/scipy/requirements.txt +++ b/appengine/flexible/scipy/requirements.txt @@ -4,4 +4,5 @@ imageio==2.9.0 numpy==1.20.0; python_version >= '3.7' numpy==1.19.5; python_version < '3.7' pillow==8.1.0 -scipy==1.6.1 +scipy==1.6.1; python_version >= '3.7' +scipy==1.5.4; python_version < '3.7'