From 42be086ffd53eed6a7d0e252e94e212f46315557 Mon Sep 17 00:00:00 2001 From: Gordon Mohr Date: Sat, 27 Jun 2020 05:09:50 -0700 Subject: [PATCH] pin keras=2.3.1 because 2.4.3 causes KerasWord2VecWrappper test failure in Py 3.8 (#2868) work around for #2865 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 38b7319f96..b8545ab61d 100644 --- a/setup.py +++ b/setup.py @@ -314,7 +314,7 @@ def run(self): # See https://github.com/RaRe-Technologies/gensim/pull/2814#issuecomment-621477948 linux_testenv += [ 'tensorflow', - 'keras', + 'keras==2.3.1', ] NUMPY_STR = 'numpy >= 1.11.3'