From 48fb18219016bc31e9693cdce46d35c09c1d374b Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 12 Feb 2026 20:15:39 +0000 Subject: [PATCH] Update docs to replace bookworm with trixie Docker image references Bookworm Docker image tags are no longer published as of uv 0.10.0. Update GitLab CI/CD guide and build-failures troubleshooting docs to reference trixie-based images instead. https://claude.ai/code/session_01SWifRGdHTeGyug1Jn5WGa6 --- docs/guides/integration/gitlab.md | 2 +- docs/reference/troubleshooting/build-failures.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/guides/integration/gitlab.md b/docs/guides/integration/gitlab.md index ca061e697abc3..8b76df5251935 100644 --- a/docs/guides/integration/gitlab.md +++ b/docs/guides/integration/gitlab.md @@ -15,7 +15,7 @@ Select a variant that is suitable for your workflow. variables: UV_VERSION: "0.10.0" PYTHON_VERSION: "3.12" - BASE_LAYER: bookworm-slim + BASE_LAYER: trixie-slim # GitLab CI creates a separate mountpoint for the build directory, # so we need to copy instead of using hard links. UV_LINK_MODE: copy diff --git a/docs/reference/troubleshooting/build-failures.md b/docs/reference/troubleshooting/build-failures.md index e834756065255..23a3dba25b662 100644 --- a/docs/reference/troubleshooting/build-failures.md +++ b/docs/reference/troubleshooting/build-failures.md @@ -116,7 +116,7 @@ The following examples demonstrate common build failures and how to resolve them If the build error mentions a missing command, for example, `gcc`: - + ```hl_lines="17" × Failed to build `pysha3==1.0.2` @@ -164,7 +164,7 @@ install it with your system package manager. For example, installing `pygraphviz` requires Graphviz to be installed: - + ```hl_lines="18-19" × Failed to build `pygraphviz==1.14` @@ -205,7 +205,7 @@ installed. !!! tip - To resolve an error where `Python.h` is missing, install the [`python3-dev` package](https://packages.debian.org/bookworm/python3-dev). + To resolve an error where `Python.h` is missing, install the [`python3-dev` package](https://packages.debian.org/trixie/python3-dev). ### Module is missing or cannot be imported @@ -215,7 +215,7 @@ If the build error mentions a failing import, consider For example, some packages assume that `pip` is available without declaring it as a build dependency: - + ```hl_lines="7" × Failed to build `chumpy==0.70` @@ -271,7 +271,7 @@ dill<0.3.9,>=0.2.2 apache-beam<=2.49.0 ``` - + ```hl_lines="1" × Failed to build `apache-beam==2.0.0`