From 19d8ae3e5148eea18bda5e08aa5453cb4ac2f45f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 00:23:16 +0000 Subject: [PATCH] Update tensorflow requirement Updates the requirements on [tensorflow](https://github.com/tensorflow/tensorflow) to permit the latest version. - [Release notes](https://github.com/tensorflow/tensorflow/releases) - [Changelog](https://github.com/tensorflow/tensorflow/blob/v2.16.2/RELEASE.md) - [Commits](https://github.com/tensorflow/tensorflow/compare/v2.0.0...v2.16.2) --- updated-dependencies: - dependency-name: tensorflow dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 050a1012b..3e12a15e6 100644 --- a/setup.py +++ b/setup.py @@ -17,13 +17,13 @@ def readme(): 'numba>=0.50.0, !=0.54.0, <0.60.0', # Avoid 0.54 due to: https://github.com/SeldonIO/alibi/issues/466 ], - 'tensorflow': ['tensorflow>=2.0.0, !=2.6.0, !=2.6.1, <2.15.0'], + 'tensorflow': ['tensorflow!=2.6.0, !=2.6.1, >=2.16.2, <2.17.0'], 'torch': ['torch>=1.9.0, <3.0.0'], 'all': [ 'ray>=0.8.7, <3.0.0', 'shap>=0.40.0, <0.44.0', 'numba>=0.50.0, !=0.54.0, <0.60.0', - 'tensorflow>=2.0.0, !=2.6.0, !=2.6.1, <2.15.0', + 'tensorflow!=2.6.0, !=2.6.1, >=2.16.2, <2.17.0', 'torch>=1.9.0, <3.0.0' ] }