From 8436eb74845e5a2d59cdb2deb58479624c5690d1 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Mon, 10 Jan 2022 11:31:19 -0800 Subject: [PATCH] Update ansible-lint Older ansible-lint is broken due to an unpinned 'rich' dependency. Newer ansible-lint fixes this issue. Update our test deps to address this. Change-Id: I5dd4e4f66720800f140a9d15631adddb5d10cf6f --- test-requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-requirements.txt b/test-requirements.txt index 430ac44..1f4e623 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -11,9 +11,9 @@ zuul # here to pull in ansible anyway; pip doesn't actually have a # dependency solver and the uncapped ansible requirement from # ansible-lint pull in the latest version. -ansible>=2.8,<2.9 # <-- keep it as old as possible +ansible>=2.9,<2.10 # <-- keep it as old as possible # We need to pin ansible-lint to before 4.0 which blows up all over the place -ansible-lint>=4.3.3,<5 +ansible-lint>=5.0.0,<6 bashate>=0.2 zuul-sphinx>=0.1.1 stestr>=1.0.0 # Apache-2.0