diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83556232..2b2afbc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.9.25" + version: "0.9.26" - name: Install dependencies # docs dependencies required to type check scripts in docs/ run: uv sync --locked --group docs @@ -73,7 +73,7 @@ jobs: id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.9.25" + version: "0.9.26" - name: Install dependencies run: uv sync --locked --no-dev - name: Configure environment file @@ -210,7 +210,7 @@ jobs: id: setup-uv with: # renovate: datasource=pypi dependency=uv - version: "0.9.25" + version: "0.9.26" - name: Install dependencies run: | uv sync --locked --no-dev --group docs diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a85305d7..4b9a0b73 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -34,7 +34,7 @@ repos: - id: validate-pyproject - repo: https://github.com/astral-sh/uv-pre-commit - rev: 0.9.25 + rev: 0.9.26 hooks: - id: uv-lock diff --git a/Dockerfile b/Dockerfile index 2f51fecd..16551634 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.13.11-alpine3.22 AS build -COPY --from=ghcr.io/astral-sh/uv:0.9.25 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.9.26 /uv /uvx /bin/ # dependencies for building Python packages RUN apk add --no-cache build-base \