From 05a61e4052e0dd2a3e80f88456dfea9211e3af03 Mon Sep 17 00:00:00 2001 From: "scientific-python-pr-tokenbot[bot]" <181030687+scientific-python-pr-tokenbot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 07:36:05 +0000 Subject: [PATCH] [create-pull-request] automated change --- .pre-commit-config.yaml | 4 ++-- docs/pages/guides/coverage.md | 2 +- docs/pages/guides/gha_basic.md | 2 +- docs/pages/guides/gha_wheels.md | 6 +++--- docs/pages/guides/style.md | 6 +++--- docs/pages/guides/tasks.md | 2 +- {{cookiecutter.project_name}}/.github/workflows/ci.yml | 6 +++--- ...% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} | 4 ++-- {{cookiecutter.project_name}}/.pre-commit-config.yaml | 2 +- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index caa7ca73..42a67c48 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: additional_dependencies: [black==24.*] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.14" + rev: "v0.15.16" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -67,7 +67,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/crate-ci/typos - rev: "v1.46.3" + rev: "v1.47.2" hooks: - id: typos exclude: ^Gemfile\.lock$ diff --git a/docs/pages/guides/coverage.md b/docs/pages/guides/coverage.md index d1469897..1d0ac6fd 100644 --- a/docs/pages/guides/coverage.md +++ b/docs/pages/guides/coverage.md @@ -229,7 +229,7 @@ enough for a simple testing suite, can be written as follows: ```yaml - name: Upload coverage report - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} ``` diff --git a/docs/pages/guides/gha_basic.md b/docs/pages/guides/gha_basic.md index a161cd96..84be8ce3 100644 --- a/docs/pages/guides/gha_basic.md +++ b/docs/pages/guides/gha_basic.md @@ -130,7 +130,7 @@ tests: allow-prereleases: true - name: Download uv - uses: astral-sh/setup-uv@v8.1.0 + uses: astral-sh/setup-uv@v8.2.0 - name: Test package run: uv run pytest diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index 6d4e6582..13245b2b 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -83,7 +83,7 @@ make_sdist: with: fetch-depth: 0 # Optional, use if you use setuptools_scm submodules: true # Optional, use if you have submodules - - uses: astral-sh/setup-uv@v8.1.0 + - uses: astral-sh/setup-uv@v8.2.0 - name: Build SDist run: uv build --sdist @@ -125,9 +125,9 @@ build_wheels: fetch-depth: 0 submodules: true - - uses: astral-sh/setup-uv@v8.1.0 + - uses: astral-sh/setup-uv@v8.2.0 - - uses: pypa/cibuildwheel@v3.4 + - uses: pypa/cibuildwheel@v4.0 - name: Upload wheels uses: actions/upload-artifact@v7 diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index 9f4878e7..3da18e0d 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -156,7 +156,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml` ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.14" + rev: "v0.15.16" hooks: # id: ruff-check would go here if using both - id: ruff-format @@ -246,7 +246,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.14" + rev: "v0.15.16" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -802,7 +802,7 @@ integration. ```yaml - repo: https://github.com/crate-ci/typos - rev: "v1.46.3" + rev: "v1.47.2" hooks: - id: typos args: [] diff --git a/docs/pages/guides/tasks.md b/docs/pages/guides/tasks.md index 79eeaaac..7f983119 100644 --- a/docs/pages/guides/tasks.md +++ b/docs/pages/guides/tasks.md @@ -319,7 +319,7 @@ You can install `uv` with `pipx`, `brew`, etc. If you want to use uv in GitHub Actions, one way is to use this: ```yaml -- uses: astral-sh/setup-uv@v8.1.0 +- uses: astral-sh/setup-uv@v8.2.0 ``` Check your jobs with `uv`; most things do not need to change. The main diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yml b/{{cookiecutter.project_name}}/.github/workflows/ci.yml index 66ec6a3e..036e5108 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: with: python-version: "3.x" - - uses: astral-sh/setup-uv@v8.1.0 + - uses: astral-sh/setup-uv@v8.2.0 - uses: j178/prek-action@v2 @@ -67,7 +67,7 @@ jobs: python-version: {% raw %}${{ matrix.python-version }}{% endraw %} allow-prereleases: true - - uses: astral-sh/setup-uv@v8.1.0 + - uses: astral-sh/setup-uv@v8.2.0 {%- if cookiecutter.backend == "mesonpy" %} @@ -86,7 +86,7 @@ jobs: --durations=20 - name: Upload coverage report - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %} 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 3b5eb3fe..fcac06ff 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 %} @@ -54,9 +54,9 @@ jobs: with: fetch-depth: 0 - - uses: astral-sh/setup-uv@v8.1.0 + - uses: astral-sh/setup-uv@v8.2.0 - - uses: pypa/cibuildwheel@v3.4 + - uses: pypa/cibuildwheel@v4.0 - name: Upload wheels uses: actions/upload-artifact@v7 diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 9fc31d37..1e8a5961 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -43,7 +43,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.14" + rev: "v0.15.16" hooks: - id: ruff-check args: ["--fix"]