From 23cdae724e08b1771acaf6254226ba50cd29f5b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Apr 2023 15:46:11 +0000 Subject: [PATCH] Update tabulate requirement in /cli Updates the requirements on [tabulate](https://github.com/astanin/python-tabulate) to permit the latest version. - [Release notes](https://github.com/astanin/python-tabulate/releases) - [Changelog](https://github.com/astanin/python-tabulate/blob/master/CHANGELOG) - [Commits](https://github.com/astanin/python-tabulate/compare/v0.8.8...v0.9.0) --- updated-dependencies: - dependency-name: tabulate dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- cli/requirements.txt | 2 +- cli/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/requirements.txt b/cli/requirements.txt index ad1a97a199..da73ad8918 100644 --- a/cli/requirements.txt +++ b/cli/requirements.txt @@ -1,5 +1,5 @@ boto3>=1.16.14 -tabulate>=0.8.8,<=0.8.10 +tabulate>=0.8.8,<=0.9.0 PyYAML~=5.3 jinja2~=3.0 marshmallow~=3.10 diff --git a/cli/setup.py b/cli/setup.py index c113abe7e3..edc098d64d 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -25,7 +25,7 @@ def readme(): REQUIRES = [ "setuptools", "boto3>=1.16.14", - "tabulate>=0.8.8,<=0.8.10", + "tabulate>=0.8.8,<=0.9.0", "PyYAML~=5.3", "jinja2~=3.0", "marshmallow~=3.10",