devops: force Python 3.13 in Vulkan container#20530
Merged
CISC merged 2 commits intoggml-org:masterfrom Mar 14, 2026
Merged
Conversation
taronaeo
reviewed
Mar 14, 2026
taronaeo
approved these changes
Mar 14, 2026
CISC
approved these changes
Mar 14, 2026
Ethan-a2
pushed a commit
to Ethan-a2/llama.cpp
that referenced
this pull request
Mar 20, 2026
* ci: force Python 3.13 in Vulkan container * remove unnecessary `update-alternatives` line
HyperFoldUK
pushed a commit
to HyperFoldUK/llama.cpp
that referenced
this pull request
Mar 24, 2026
Ubuntu 26.04 ships with Python 3.14 as the default, but torch~=2.6.0 (required by requirements-convert_hf_to_gguf.txt) has no wheel for Python 3.14. This causes the 'full' stage pip install to fail with: ERROR: No matching distribution found for torch~=2.6.0 Fix: explicitly install python3.13 + python3.13-dev and register it as the default python3 via update-alternatives, matching the fix applied upstream in ggml-org/llama.cpp@fc350fdf (ggml-org#20530).
HyperFoldUK
pushed a commit
to HyperFoldUK/llama.cpp
that referenced
this pull request
Apr 8, 2026
Two Dockerfile fixes:
1. vulkan.Dockerfile: replace apt-based python3.13/python3.13-dev
install with uv (Astral Python manager). Ubuntu 26.04 ('resolute')
does not ship python3.13-dev as a separate apt package, causing the
'full' stage to fail with exit code 100 ('Unable to locate package
python3.13-dev'). Using uv to install Python 3.13 independently of
the system package manager resolves this.
Also switches build-stage SSL dep from libcurl4-openssl-dev to
libssl-dev, consistent with upstream refactor (ggml-org#18828).
2. s390x.Dockerfile: replace libcurl4-openssl-dev with libssl-dev in
the build stage, matching upstream refactor (ggml-org#18828).
Fixes: vulkan linux/amd64 'full' stage failing with exit code 100
Refs: ggml-org#20530, ggml-org#18828
HyperFoldUK
pushed a commit
to HyperFoldUK/llama.cpp
that referenced
this pull request
Apr 8, 2026
Two Dockerfile fixes:
1. vulkan.Dockerfile: replace apt-based python3.13/python3.13-dev
install with uv (Astral Python manager). Ubuntu 26.04 ('resolute')
does not ship python3.13-dev as a separate apt package, causing the
'full' stage to fail with exit code 100 ('Unable to locate package
python3.13-dev'). Using uv to install Python 3.13 independently of
the system package manager resolves this.
Also switches build-stage SSL dep from libcurl4-openssl-dev to
libssl-dev, consistent with upstream refactor (ggml-org#18828).
2. s390x.Dockerfile: replace libcurl4-openssl-dev with libssl-dev in
the build stage, matching upstream refactor (ggml-org#18828).
Fixes: vulkan linux/amd64 full stage failing with exit code 100
Refs: ggml-org#20530, ggml-org#18828
Seunghhon
pushed a commit
to Seunghhon/llama.cpp
that referenced
this pull request
Apr 26, 2026
* ci: force Python 3.13 in Vulkan container * remove unnecessary `update-alternatives` line
rsenthilkumar6
pushed a commit
to rsenthilkumar6/llama.cpp
that referenced
this pull request
May 1, 2026
* ci: force Python 3.13 in Vulkan container * remove unnecessary `update-alternatives` line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Forces Python 3.13 in the Vulkan container image build to support PyTorch 2.6.
Fixes #20524.