From b6686fbce3fbc3fc3b3eb854b5fa29221f8bc476 Mon Sep 17 00:00:00 2001 From: Niko Pikall <166406805+npikall@users.noreply.github.com> Date: Tue, 9 Dec 2025 21:56:27 +0100 Subject: [PATCH] Update UV_VERSION in docs for GitLab CI/CD (#17040) ## Summary Update the `UV_VERSION`, such that a `copy-to-clipboard` action and pasting into a `.gitlab-ci.yml` is not 4 minor versions behind, as it happened to me a couple of times. ## Test Plan I ran `mkdocs serve` and it worked (I literally only changed one character) --- docs/guides/integration/gitlab.md | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/integration/gitlab.md b/docs/guides/integration/gitlab.md index 0a4073394..b1b83c278 100644 --- a/docs/guides/integration/gitlab.md +++ b/docs/guides/integration/gitlab.md @@ -13,7 +13,7 @@ Select a variant that is suitable for your workflow. ```yaml title="gitlab-ci.yml" variables: - UV_VERSION: "0.5" + UV_VERSION: "0.9.16" PYTHON_VERSION: "3.12" BASE_LAYER: bookworm-slim # GitLab CI creates a separate mountpoint for the build directory, diff --git a/pyproject.toml b/pyproject.toml index 204ee4ff4..9603c9dd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,6 +72,7 @@ version_files = [ "docs/guides/integration/docker.md", "docs/guides/integration/pre-commit.md", "docs/guides/integration/github.md", + "docs/guides/integration/gitlab.md", "docs/guides/integration/aws-lambda.md", "docs/concepts/build-backend.md", "docs/concepts/projects/init.md",