From 24ad4d9f7bfa365d889a3a00ab82eb59054c2ae8 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 31 Aug 2021 23:06:30 -0500 Subject: [PATCH] Disallow TF v2.3.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 10a9fae799..2b56fc882f 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ extras_require = { 'shellcomplete': ['click_completion'], 'tensorflow': [ - 'tensorflow~=2.2,>=2.2.1', + 'tensorflow~=2.2,>=2.2.1,!=2.3.0', # c.f. https://github.com/tensorflow/tensorflow/pull/40789 'tensorflow-probability~=0.10,>=0.10.1', ], 'torch': ['torch~=1.8'],