From b1836ad4d2f091fa1825af91c09b3064012997dd Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Tue, 12 May 2020 10:37:38 -0500 Subject: Cap flake8 to be < 3.8.0 The 3.8.0 version introduces some checks that cause failures with the current code. To avoid that, this caps flake8 to a version that had been tested withouth errors so hacking does not pull in a newer version. We will likely want to raise hacking to 3.x and drop this cap, but to make it easy to backport to stable branches, taking this approach first. Change-Id: I2a539263e8cfc7d15243d78e20b70b8ed763b8fd Signed-off-by: Sean McGinnis --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index 47086b2..33e80bd 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,6 +2,7 @@ # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. +flake8>=3.6.0,<3.8.0 # MIT hacking>=2.0.0,<2.1.0 # Apache-2.0 fixtures>=3.0.0 # Apache-2.0/BSD -- cgit v1.2.1