From d34df40bd462880d8f0132f36b011fd31ca6a787 Mon Sep 17 00:00:00 2001 From: Jan Tychtl Date: Tue, 24 Mar 2026 21:19:18 +0100 Subject: [PATCH] chore: bump uv to 0.11 uv 0.11.0 was released on 2026-03-23. CI picks it up automatically via astral-sh/setup-uv@v7 (latest) and the floating Docker tag, but pyproject.toml pinned ~=0.10.0 which rejects 0.11.0. jira: TRIVIAL risk: low --- .pre-commit-config.yaml | 2 +- Dockerfile | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 78b9d7429..42044f131 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -35,6 +35,6 @@ repos: hooks: - id: gitlint - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.10.0 + rev: 0.11.0 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index 6b446275c..20edd2703 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # (C) 2021 GoodData Corporation ARG PY_TAG -FROM ghcr.io/astral-sh/uv:0.10 AS uv +FROM ghcr.io/astral-sh/uv:0.11 AS uv FROM python:${PY_TAG} ARG PY_TAG diff --git a/pyproject.toml b/pyproject.toml index 6d50dd72f..ef5d36e31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ ] [tool.uv] -required-version = "~=0.10.0" +required-version = "~=0.11.0" [tool.uv.sources] gooddata-sdk = { workspace = true }