From: Gerard Guillemas Martos Date: Sat, 14 Mar 2026 20:37:09 +0000 (+0100) Subject: docker : force Python 3.13 in Vulkan container (#20530) X-Git-Tag: upstream/0.0.8611~262 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=fc350fdf96d60474378e382a306d58c67633986c;p=pkg%2Fggml%2Fsources%2Fllama.cpp docker : force Python 3.13 in Vulkan container (#20530) * ci: force Python 3.13 in Vulkan container * remove unnecessary `update-alternatives` line --- diff --git a/.devops/vulkan.Dockerfile b/.devops/vulkan.Dockerfile index 5d6c87ed6..3112ec85e 100644 --- a/.devops/vulkan.Dockerfile +++ b/.devops/vulkan.Dockerfile @@ -53,10 +53,11 @@ RUN apt-get update \ && apt-get install -y \ build-essential \ git \ - python3 \ - python3-dev \ + python3.13 \ + python3.13-dev \ python3-pip \ python3-wheel \ + && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.13 100 \ && pip install --break-system-packages --upgrade setuptools \ && pip install --break-system-packages -r requirements.txt \ && apt autoremove -y \