From a46e46c9b8a6d38cefbec1239e728049b4775b93 Mon Sep 17 00:00:00 2001 From: Keith Rush Date: Fri, 15 Nov 2019 11:36:32 -0800 Subject: [PATCH] Pin tf-nightly in setup.py Currently, the following sequence of steps fails: * Create and activate fresh virtualenv * install tfa-nightly * import tensorflow_addons This raises an op not found error. I believe this change should fix at least this behavior. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f8289d6d53..9fa53f2152 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ else: REQUIRED_PACKAGES.append('tensorflow >= 2.0.0') elif project_name == TFA_NIGHTLY: - REQUIRED_PACKAGES.append('tf-nightly') + REQUIRED_PACKAGES.append('tf-nightly==2.1.0.dev20191029') class BinaryDistribution(Distribution):