From b9834ceb4a1150cd3b808886aabb1e7bbf6c5c31 Mon Sep 17 00:00:00 2001 From: albailey Date: Mon, 10 Jan 2022 10:57:59 -0600 Subject: [PATCH] Fix tox ansible lint failure due to a new module rich 11.0.0 was released on Jan 9 which breaks ansible lint. The fix is to clamp the version of rich to the last version that passed zuul. rich-10.16.2 Story: 2008943 Task: 44261 Signed-off-by: albailey Change-Id: Id4bc7a2c10123d637877b8a958dd11742043bf17 --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index 8bd44e48d..a4e321801 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -3,4 +3,5 @@ bandit;python_version>="3.0" bashate >= 0.2 flake8 >= 2.5.4 # MIT PyYAML >= 3.1.0 +rich <= 10.16.2 yamllint >= 0.5.2