From 2cdfab2406b634aacb912015e0cb4b8c887100f5 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Wed, 9 Oct 2024 10:48:26 -0400 Subject: [PATCH] Install the rest of the flake8 plugins via dnf. (#790) These are available from EPEL now, so we can install them from packages rather than pip. Signed-off-by: Chris Lalancette --- linux_docker_resources/Dockerfile-RHEL | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux_docker_resources/Dockerfile-RHEL b/linux_docker_resources/Dockerfile-RHEL index 43ce55e8..c49b4083 100644 --- a/linux_docker_resources/Dockerfile-RHEL +++ b/linux_docker_resources/Dockerfile-RHEL @@ -123,8 +123,11 @@ RUN dnf install \ python3-empy \ $(if test ${EL_RELEASE/.*/} != 8; then echo python3-fastjsonschema; fi) \ python3-flake8 \ + $(if test ${EL_RELEASE/.*/} != 8; then echo python3-flake8-blind-except; fi) \ $(if test ${EL_RELEASE/.*/} != 8; then echo python3-flake8-builtins; fi) \ + $(if test ${EL_RELEASE/.*/} != 8; then echo python3-flake8-class-newline; fi) \ $(if test ${EL_RELEASE/.*/} != 8; then echo python3-flake8-comprehensions; fi) \ + $(if test ${EL_RELEASE/.*/} != 8; then echo python3-flake8-deprecated; fi) \ python3-flake8-docstrings \ $(if test ${EL_RELEASE/.*/} != 8; then echo python3-flake8-import-order; fi) \ $(if test ${EL_RELEASE/.*/} != 8; then echo python3-flake8-quotes; fi) \