From f5fcc6ca8e9156a5897e3b6ab124636f0397f655 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, 22 Dec 2025 06:03:51 +0000 Subject: [PATCH] [create-pull-request] automated change --- .pre-commit-config.yaml | 4 ++-- docs/pages/guides/gha_pure.md | 10 +++++----- docs/pages/guides/gha_wheels.md | 8 ++++---- docs/pages/guides/style.md | 12 ++++++------ ...okiecutter.__type!='compiled' %}cd.yml{% endif %} | 2 +- ...okiecutter.__type=='compiled' %}cd.yml{% endif %} | 6 +++--- .../.pre-commit-config.yaml | 8 ++++---- 7 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 640f2231..b42bad2d 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.14.8" + rev: "v0.14.10" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -43,7 +43,7 @@ repos: - id: rst-inline-touching-normal - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.19.0" + rev: "v1.19.1" hooks: - id: mypy files: "(src|tests|noxfile.py)" diff --git a/docs/pages/guides/gha_pure.md b/docs/pages/guides/gha_pure.md index ad6647ec..186a5428 100644 --- a/docs/pages/guides/gha_pure.md +++ b/docs/pages/guides/gha_pure.md @@ -77,7 +77,7 @@ dist: - name: Build SDist and wheel run: pipx run build - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: Packages path: dist/* @@ -148,7 +148,7 @@ publish: runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: Packages path: dist @@ -182,7 +182,7 @@ publish: runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: Packages path: dist @@ -246,7 +246,7 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: Packages path: dist @@ -294,7 +294,7 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: Packages path: dist diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index 405d2ddb..23db4811 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -88,7 +88,7 @@ make_sdist: - name: Build SDist run: uv build --sdist - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: cibw-sdist path: dist/*.tar.gz @@ -130,7 +130,7 @@ build_wheels: - uses: pypa/cibuildwheel@v3.3 - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: cibw-wheels-${{ matrix.os }} path: wheelhouse/*.whl @@ -184,7 +184,7 @@ upload_all: runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: pattern: cibw-* path: dist @@ -219,7 +219,7 @@ upload_all: runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: pattern: cibw-* path: dist diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index 61e20955..64ce0b72 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -140,7 +140,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.14.8" + rev: "v0.14.10" hooks: # id: ruff-check would go here if using both - id: ruff-format @@ -230,7 +230,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.8" + rev: "v0.14.10" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -621,7 +621,7 @@ The MyPy addition for pre-commit: ```yaml - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.19.0" + rev: "v1.19.1" hooks: - id: mypy files: src @@ -732,7 +732,7 @@ important parts (like Python classifiers) are in sync. This tool, ```yaml - repo: https://github.com/asottile/setup-cfg-fmt - rev: "v3.1.0" + rev: "v3.2.0" hooks: - id: setup-cfg-fmt args: [--include-version-classifiers, --max-py-version=3.12] @@ -831,7 +831,7 @@ following pre-commit config: ```yaml - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v21.1.7" + rev: "v21.1.8" hooks: - id: clang-format types_or: [c++, c, cuda] @@ -908,7 +908,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML. ```yaml - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.35.0" + rev: "0.36.0" hooks: - id: check-dependabot - id: check-github-workflows 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 85936c58..0e7a969d 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 %} @@ -43,7 +43,7 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: Packages path: dist 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 1ce537ed..365d6312 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 %} @@ -30,7 +30,7 @@ jobs: - name: Build SDist run: pipx run build --sdist - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: cibw-sdist path: dist/*.tar.gz @@ -59,7 +59,7 @@ jobs: - uses: pypa/cibuildwheel@v3.3 - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: cibw-wheels-{% raw %}${{ matrix.os }}-${{ strategy.job-index }}{% endraw %} path: wheelhouse/*.whl @@ -75,7 +75,7 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: pattern: cibw-* path: dist diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 4f951970..5ae60d50 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.14.8" + rev: "v0.14.10" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -52,7 +52,7 @@ repos: {%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %} - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v21.1.7" + rev: "v21.1.8" hooks: - id: clang-format types_or: [c++, c, cuda] @@ -60,7 +60,7 @@ repos: {%- endif %} - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.19.0" + rev: "v1.19.1" hooks: - id: mypy files: src|tests|noxfile.py @@ -105,7 +105,7 @@ repos: additional_dependencies: ["validate-pyproject-schema-store[all]"] - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.35.0" + rev: "0.36.0" hooks: {%- if cookiecutter.__ci == "github" %} - id: check-dependabot