From 3e62b2d36bb5d5f3c804ba722d8aaaac1272bcc7 Mon Sep 17 00:00:00 2001 From: chenwany Date: Fri, 21 Oct 2022 11:30:16 -0700 Subject: [PATCH] Update tabulate requirement from <0.8.10,>=0.8.2 to >=0.8.8,<=0.8.10 in /cli Signed-off-by: chenwany --- 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 a211a556ac..889f05a644 100644 --- a/cli/requirements.txt +++ b/cli/requirements.txt @@ -1,5 +1,5 @@ boto3>=1.16.14 -tabulate>=0.8.2,<0.8.10 +tabulate>=0.8.8,<=0.8.10 ipaddress>=1.0.22 PyYAML>=5.3.1 jinja2>=2.11.0 diff --git a/cli/setup.py b/cli/setup.py index 5ba2f13404..c372e706d3 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -24,7 +24,7 @@ def readme(): REQUIRES = [ "setuptools", "boto3>=1.16.14", - "tabulate>=0.8.2,<0.8.10", + "tabulate>=0.8.8,<=0.8.10", "ipaddress>=1.0.22", "PyYAML>=5.3.1", "jinja2>=2.11.0",