From 4abbe7e446a8cc3af3133c5048b8c0ed59128fd8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jun 2022 12:58:09 +0000 Subject: [PATCH] Update tox requirement from <3.25,>=3.20 to >=3.20,<3.26 Updates the requirements on [tox](https://github.com/tox-dev/tox) to permit the latest version. - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/master/docs/changelog.rst) - [Commits](https://github.com/tox-dev/tox/compare/3.20.0...3.25.0) --- updated-dependencies: - dependency-name: tox dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c7e8c536..7e8ed428 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ import setuptools keras_deps = [ - 'tensorflow>=2.2,<2.8', + 'tensorflow>=2.9', 'tensorflow_datasets>=4.2,<4.5', 'tensorflow-privacy>=0.5,<0.8', ] @@ -41,6 +41,7 @@ "mkdocs-material", "mkdocs-material-extensions", "markdown-include", + "jinja2==3.0.3" ] grpc_deps = ['grpcio>=1.35,<1.43', @@ -82,7 +83,7 @@ 'numpy>=1.16,<1.23', 'pydantic>=1.7,<1.10', ], - tests_require=["tox>=3.20,<3.25"], + tests_require=["tox>=3.20,<3.26"], extras_require={ 'keras': keras_deps, 'other': other_deps,