From 367634ddad4aa844cd78dd9bbbfcbb03b61fce2c Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 20 Sep 2022 17:25:28 -0600 Subject: [PATCH] mgr: Fix prettytable pinning to restore python3.6 prettytable 3.3.0 requires python3.7; we still support 3.6, so change the pinning to simply keep us under 3.4.0 Signed-off-by: Zack Cerza (cherry picked from commit c6a89cc97777bd63123420cd020033534961bfde) --- src/pybind/mgr/requirements-required.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/requirements-required.txt b/src/pybind/mgr/requirements-required.txt index ab36032e6705..a750b0537910 100644 --- a/src/pybind/mgr/requirements-required.txt +++ b/src/pybind/mgr/requirements-required.txt @@ -5,7 +5,7 @@ cryptography jsonpatch Jinja2 pecan -prettytable==3.3.0 +prettytable<3.4.0 pyfakefs pyOpenSSL pytest-cov==2.7.1 -- 2.47.3