From f8a6f6820830a22a29ce7addbc800006f676b613 Mon Sep 17 00:00:00 2001 From: Jiri Konecny Date: Fri, 10 Nov 2023 10:51:26 +0100 Subject: [PATCH] infra: Pin pocketlint version (#infra) Pocketlint has a new verion which is required for python 2.14 but unfortunately not backward compatible. https://github.com/rhinstaller/pocketlint/pull/49 To solve this let's pin also pocketlint version next to pylint version. --- dockerfile/anaconda-ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile/anaconda-ci/Dockerfile b/dockerfile/anaconda-ci/Dockerfile index bca5bd0a26e..91b0815aeae 100644 --- a/dockerfile/anaconda-ci/Dockerfile +++ b/dockerfile/anaconda-ci/Dockerfile @@ -35,7 +35,7 @@ RUN echo dnf update -y && \ RUN pip-3.6 install \ "pylint==2.5.3" \ "astroid==2.4.2" \ - pocketlint \ + "pocketlint==0.24" \ copr \ coverage \ pycodestyle \