From 4f77f2a919faa3220bbc7f910c3b0c6fa4e7d7a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Feb 2022 09:57:58 +0000 Subject: [PATCH] Update tensorflow-datasets requirement from <4.5,>=4.2 to >=4.2,<4.6 Updates the requirements on [tensorflow-datasets](https://github.com/tensorflow/datasets) to permit the latest version. - [Release notes](https://github.com/tensorflow/datasets/releases) - [Changelog](https://github.com/tensorflow/datasets/blob/master/docs/release_notes.md) - [Commits](https://github.com/tensorflow/datasets/compare/v4.2.0...v4.5.2) --- updated-dependencies: - dependency-name: tensorflow-datasets dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index c2c809ad..5757deb3 100644 --- a/setup.py +++ b/setup.py @@ -19,11 +19,11 @@ keras_deps = [ 'tensorflow>=2.2,<2.8', - 'tensorflow_datasets>=4.2,<4.5', + 'tensorflow_datasets>=4.2,<4.6', 'tensorflow-privacy>=0.5,<0.8', ] other_deps = [ - 'pandas~=1.1.0', + 'pandas>=1.1,<1.5', 'scikit-learn>=0.23,<1.1', ] pytorch_deps = [ @@ -45,7 +45,7 @@ grpc_deps = ['grpcio>=1.35,<1.43', 'grpcio-tools>=1.35,<1.44', - 'prometheus_client==0.12.0', + 'prometheus_client==0.13.1', 'click' ] all_deps = list(set(keras_deps + other_deps + pytorch_deps + grpc_deps)) + ["xgboost"]