From 128fd94ab178382314af5f6bb3dc875e1335e409 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 7 Dec 2020 12:57:02 +0100 Subject: [PATCH] Pin numpy<1.20 for continued python3.6 support Numpy starting with 1.20 has dropped support for Python 3.6. --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 921af308..e9af491f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ torch>=1.5 tensorflow==2.3.1 -numpy>=1.16.0 +numpy>=1.16.0; python_version >= "3.7" +numpy>=1.16.0,<1.20; python_version < "3.7" scipy>=0.19.0 numba==0.48 librosa==0.7.2