From 9f22f412865b46fe428a1188130ca0f7ace577b0 Mon Sep 17 00:00:00 2001 From: Elod Illes Date: Mon, 18 May 2020 21:10:08 +0200 Subject: [PATCH] [train-only] Cap pycodestyle to < 2.6.0 stable/train's pep8 job started to fail with some error as pycodestyle 2.6.0 version was released. To fix this add pycodestyle<2.6.0 constraint to test-requirements.txt This fix is not needed on master due to pycodestyle is not listed in test-requirements anymore. Neither needed in Stein, because pycodestyle requirement is not added there yet. Change-Id: Id564eea41e293872dc299f50e159c66d0d3e661e --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index c8c8cb1c50c3..a3e369f85a65 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -11,7 +11,7 @@ mock>=3.0.0 # BSD mox3>=0.20.0 # Apache-2.0 psycopg2>=2.7 # LGPL/ZPL PyMySQL>=0.7.6 # MIT License -pycodestyle>=2.0.0 # MIT License +pycodestyle>=2.0.0,<2.6.0 # MIT License python-barbicanclient>=4.5.2 # Apache-2.0 python-ironicclient!=2.7.1,>=2.7.0 # Apache-2.0 requests-mock>=1.2.0 # Apache-2.0