From 7eab65623f6c60b0c5f2ded41db1dc23d9c0c2ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Wieczorek?= Date: Wed, 2 Jul 2025 17:51:10 +0200 Subject: [PATCH] config: docker: Bump Python version for base template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This upgrade is inteded to make use of recent changes in handling temporary files (in "tempfile" module). Signed-off-by: Paweł Wieczorek --- config/docker/base/python.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/docker/base/python.jinja2 b/config/docker/base/python.jinja2 index 004b77e4c3..37f50f0055 100644 --- a/config/docker/base/python.jinja2 +++ b/config/docker/base/python.jinja2 @@ -4,7 +4,7 @@ # Author: Guillaume Tucker -#} -FROM mirror.gcr.io/python:3.11 +FROM mirror.gcr.io/python:3.12 MAINTAINER "KernelCI TSC"