From f8b81d8e71dbcfd980943c1083b563c9bc673207 Mon Sep 17 00:00:00 2001 From: Sven Kieske Date: Mon, 5 Aug 2024 10:27:55 +0200 Subject: [PATCH] CI: fix lint requirements for python 3.12 see: https://github.com/PyCQA/flake8/issues/1845#issuecomment-1766073353 pycodestyle >= 2.11 requires newer `hacking` version as well Signed-off-by: Sven Kieske Change-Id: I7be701d8673dea8345a5fe7a95ad69633f1b7648 --- lint-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lint-requirements.txt b/lint-requirements.txt index 58117d9880..bfce075ed2 100644 --- a/lint-requirements.txt +++ b/lint-requirements.txt @@ -4,6 +4,7 @@ bandit>=1.1.0 # Apache-2.0 bashate>=0.5.1 # Apache-2.0 codespell<2.3.0 # GPLv2 doc8>=0.6.0 # Apache-2.0 -hacking>=3.0.1,<3.1.0 # Apache-2.0 +hacking>=3.0.1 # Apache-2.0 +pycodestyle>=2.11.0 # MIT reno>=3.1.0 # Apache-2.0 yamllint>=1.22.0 #GPL3