From dd959e2ce9294b5b43648ff149e320f3928eac1d Mon Sep 17 00:00:00 2001 From: Andy Eschbacher Date: Tue, 22 Oct 2019 16:07:09 -0400 Subject: [PATCH] constrain tensorflow version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 45bd5742f..c8baef8fa 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ install_requires=['numpy>=1.7', 'six>=1.10.0'], extras_require={ - 'tensorflow': ['tensorflow>=1.2.0rc0'], - 'tensorflow with gpu': ['tensorflow-gpu>=1.2.0rc0'], + 'tensorflow': ['tensorflow>=1.2.0rc0,<2.0.0'], + 'tensorflow with gpu': ['tensorflow-gpu>=1.2.0rc0,<2.0.0'], 'neural networks': ['keras>=2.0.0', 'prettytensor>=0.7.4'], 'datasets': ['observations>=0.1.2'], 'notebooks': ['jupyter>=1.0.0'],