From d54b12a123a7dafd05c237bc31f3b6f6ab56b0b9 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Fri, 3 Oct 2025 16:30:50 -0500 Subject: [PATCH 1/2] tests/container: remove python3.9 and flake8 installs Signed-off-by: Andrew Schoen --- tests/container/build.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/container/build.sh b/tests/container/build.sh index ddf3f0ce..d166afd6 100755 --- a/tests/container/build.sh +++ b/tests/container/build.sh @@ -121,10 +121,8 @@ task_sys_deps() { python3-wheel \ python3-pyxattr \ python3-devel \ - python3.9 \ samba-common-tools \ rpm-build \ - 'python3dist(flake8)' \ 'python3dist(inotify-simple)' \ 'python3dist(mypy)' \ 'python3dist(pytest)' \ From 9914127b7f64e05f8b9c76bff37e6c987b46ce3d Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Tue, 7 Oct 2025 09:58:13 -0500 Subject: [PATCH 2/2] tests/build.sh: only install python3-inotify_simple on rhel Signed-off-by: Andrew Schoen --- tests/container/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/container/build.sh b/tests/container/build.sh index d166afd6..f160a631 100755 --- a/tests/container/build.sh +++ b/tests/container/build.sh @@ -138,7 +138,7 @@ task_sys_deps() { pkgs+=(pyproject-rpm-macros) fi if [ "$use_rhel" ]; then - pkgs+=(pyproject-rpm-macros) + pkgs+=(pyproject-rpm-macros python3-inotify_simple) fi "${dnf_cmd}" "${yum_args[@]}" install -y "${pkgs[@]}" "${dnf_cmd}" clean all