From 24d9d2cf8d0575e3589a0a03100f28b29c9bb72e Mon Sep 17 00:00:00 2001 From: Gwenael Lambrouin Date: Tue, 27 Jul 2021 15:49:22 +0000 Subject: NFVBENCH-216 Fix broken flake8 tests in CI - remove version constraints on the "hacking" python package (flake8 plugin that enforces openstack coding style) because this was the root cause holding flake8 in the past. - require flake8>=3.3.0 to have python 3.6 support - ignore all the new errors introduced by newer versions of the tools. The point here is to have flake8 back with equal functionality. If wanted, some of the new error codes could be re-enabled, but this would require to fix the code and could lead to accidental regressions. - align minimum package version numbers in requirements-dev.txt and test-requirements.txt Signed-off-by: Gwenael Lambrouin Change-Id: I2e85aded58f1b2b9b5e750dba66ac68b13e150a5 --- requirements-dev.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'requirements-dev.txt') diff --git a/requirements-dev.txt b/requirements-dev.txt index 276d014..f0ef0ab 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,8 +1,7 @@ -r requirements.txt docutils==0.14.0 -flake8>=2.3.0 -pylint>=1.3 -pep8>=1.5.7 +flake8>=3.3.0 +pylint>=1.7.1 sphinx>=1.4.0 sphinx_rtd_theme>=0.2.4 tox>=2.3.0 -- cgit 1.2.3-korg