From 21543a6896e4630aeb8b569e79e7a7cc03a3c565 Mon Sep 17 00:00:00 2001 From: Mario Cho Date: Mon, 21 Dec 2020 17:59:00 +0900 Subject: [PATCH] add missing requirement of tensorflow 2.3.x version Tensorflow data-validation support tensorflow api 2, but setup.py missing information of 2.3.x version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9ca571e1..488b096f 100644 --- a/setup.py +++ b/setup.py @@ -187,7 +187,7 @@ def select_constraint(default, nightly=None, git_master=None): 'protobuf>=3.9.2,<4', 'pyarrow>=0.17,<0.18', 'six>=1.12,<2', - 'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.4.*,<3', + 'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3', 'tensorflow-metadata' + select_constraint( default='>=0.26,<0.27', nightly='>=0.27.0.dev',