From e47717b0ac8d62ea80e7d77e4f0060e3104e6c63 Mon Sep 17 00:00:00 2001 From: Jean-Louis Dupond Date: Fri, 24 Jan 2025 13:57:06 +0100 Subject: [PATCH] containers: add python3.12 to centos9 container Install python3.12 packages on CentOS 9 in order to enable tests on that version. Signed-off-by: Jean-Louis Dupond --- containers/centos-9.containerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/containers/centos-9.containerfile b/containers/centos-9.containerfile index a6e5e0b7..346ec799 100644 --- a/containers/centos-9.containerfile +++ b/containers/centos-9.containerfile @@ -25,6 +25,9 @@ RUN echo v1 \ python3.11-setuptools \ python3.11-ovirt-engine-sdk4 \ python3.11-pip \ + python3.12-devel \ + python3.12-setuptools \ + python3.12-pip \ qemu-img \ qemu-kvm \ rpm-build \ @@ -39,3 +42,4 @@ COPY requirements.txt requirements.txt RUN python3 -m pip install --upgrade --ignore-installed pip \ && python3 -m venv /venv \ && /venv/bin/python3 -m pip install --requirement requirements.txt +RUN pip3.12 install ovirt-engine-sdk-python