From 8080f496b6f2f4e125315c746705a50fd11827a8 Mon Sep 17 00:00:00 2001 From: Bart Wensley Date: Wed, 24 Oct 2018 10:05:47 -0500 Subject: [PATCH] Lock down flake8 version The new flake8 version 3.6.0 introduces new warnings that cause the check and gate jobs to fail. Locking down the flake8 version to avoid these surprises in the future. We can later increment the flake8 version and fix the new warnings in a controlled manner. Change-Id: I6bd40eea0ec8599af5ded99f7696e81d5c64f31e Partial-Bug: 1799721 Signed-off-by: Bart Wensley --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index b891eae8..d4986482 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,4 +1,4 @@ bashate >= 0.2 PyYAML >= 3.1.0 yamllint >= 0.5.2 -flake8 >= 2.5.4 # MIT +flake8 < 3.6.0