diff --git a/.github/workflows/reusable-cookie.yml b/.github/workflows/reusable-cookie.yml index 065199b9..cbe22cea 100644 --- a/.github/workflows/reusable-cookie.yml +++ b/.github/workflows/reusable-cookie.yml @@ -38,6 +38,7 @@ jobs: with: python-version: ${{ matrix.python-version }} allow-prereleases: true + check-latest: ${{ matrix.python-version == '3.13' }} - name: Setup uv uses: astral-sh/setup-uv@v6 diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index 6b0050e9..8e347c80 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -119,7 +119,7 @@ build_wheels: - uses: astral-sh/setup-uv@v6 - - uses: pypa/cibuildwheel@v2.23 + - uses: pypa/cibuildwheel@v3.0 - name: Upload wheels uses: actions/upload-artifact@v4 diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index 1751a0f7..cce8552b 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -744,7 +744,7 @@ following pre-commit config: ```yaml - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v20.1.5" + rev: "v20.1.6" hooks: - id: clang-format types_or: [c++, c, cuda] diff --git a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} index c28d6976..74efd839 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} +++ b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} @@ -50,7 +50,7 @@ jobs: - uses: astral-sh/setup-uv@v6 - - uses: pypa/cibuildwheel@v2.23 + - uses: pypa/cibuildwheel@v3.0 - name: Upload wheels uses: actions/upload-artifact@v4 diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 10efbd80..5f2d8e65 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -51,7 +51,7 @@ repos: {%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %} - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v20.1.5" + rev: "v20.1.6" hooks: - id: clang-format types_or: [c++, c, cuda]