diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 375f703..e5218df 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: # ruff - linting + formatting - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.16.0 + rev: v0.16.1 hooks: - id: ruff name: ruff @@ -32,7 +32,7 @@ repos: # ty - lint-like type checking (Astral, preview) - repo: https://github.com/astral-sh/ty-pre-commit - rev: v0.0.63 + rev: v0.0.68 hooks: - id: ty name: ty @@ -48,7 +48,7 @@ repos: # oxfmt - formatting YAML, JSON, Markdown, ... - repo: https://github.com/oxc-project/mirrors-oxfmt - rev: v0.60.0 + rev: v0.61.0 hooks: - id: oxfmt types_or: [yaml, markdown, json] diff --git a/.python-version b/.python-version index 3f0a10f..a128d5c 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.14.6 +3.14.7 diff --git a/Dockerfile b/Dockerfile index f07b738..b6295b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.6-slim-trixie AS python-base +FROM python:3.14.7-slim-trixie AS python-base ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ @@ -9,7 +9,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" FROM python-base AS builder-base -COPY --from=ghcr.io/astral-sh/uv:0.11.32 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.12.2 /uv /uvx /bin/ WORKDIR $WORKDIR_PATH diff --git a/pyproject.toml b/pyproject.toml index fc5a1f2..ed6845b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ homepage = "https://github.com/smarlhens/python-boilerplate#readme" repository = "https://github.com/smarlhens/python-boilerplate" [build-system] -requires = ["uv_build>=0.11.21,<0.12.0"] +requires = ["uv_build>=0.12.2,<0.13.0"] build-backend = "uv_build" [dependency-groups]