Skip to content

Commit d34df40

Browse files
committed
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
1 parent 4303cb0 commit d34df40

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ repos:
3535
hooks:
3636
- id: gitlint
3737
- repo: https://github.com/astral-sh/uv-pre-commit
38-
rev: 0.10.0
38+
rev: 0.11.0
3939
hooks:
4040
- id: uv-lock

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# (C) 2021 GoodData Corporation
22
ARG PY_TAG
3-
FROM ghcr.io/astral-sh/uv:0.10 AS uv
3+
FROM ghcr.io/astral-sh/uv:0.11 AS uv
44
FROM python:${PY_TAG}
55

66
ARG PY_TAG

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies = [
1717
]
1818

1919
[tool.uv]
20-
required-version = "~=0.10.0"
20+
required-version = "~=0.11.0"
2121

2222
[tool.uv.sources]
2323
gooddata-sdk = { workspace = true }

0 commit comments

Comments
 (0)