From a0436553a7c6f41cebb6595f9fb279d64ce18626 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, 3 Aug 2026 07:03:10 +0000 Subject: [PATCH] [create-pull-request] automated change --- .pre-commit-config.yaml | 6 +++--- docs/guides/security.md | 2 +- docs/guides/style.md | 10 +++++----- {{cookiecutter.project_name}}/.pre-commit-config.yaml | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 297f9892..e2fc0a2f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.0" + rev: "v0.16.1" hooks: - id: ruff-check args: ["--fix"] @@ -60,7 +60,7 @@ repos: types_or: [yaml, html, css, scss, javascript, json] - repo: https://github.com/rvben/rumdl-pre-commit - rev: "v0.2.43" + rev: "v0.2.49" hooks: - id: rumdl args: [--no-exclude] # Disable all exclude patterns @@ -72,7 +72,7 @@ repos: exclude: ^Gemfile\.lock$ - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: "v1.28.0" + rev: "v1.29.0" hooks: - id: zizmor diff --git a/docs/guides/security.md b/docs/guides/security.md index 540fbf81..d6f7a181 100644 --- a/docs/guides/security.md +++ b/docs/guides/security.md @@ -68,7 +68,7 @@ it as a pre-commit hook or as a GitHub Action: ```yaml - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: "v1.28.0" + rev: "v1.29.0" hooks: - id: zizmor ``` diff --git a/docs/guides/style.md b/docs/guides/style.md index 9913674f..782d546a 100644 --- a/docs/guides/style.md +++ b/docs/guides/style.md @@ -148,7 +148,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.16.0" + rev: "v0.16.1" hooks: # id: ruff-check would go here if using both - id: ruff-format @@ -216,7 +216,7 @@ your code and your docs. Add `markdown` to the `ruff-format` hook's `types_or`: ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.0" + rev: "v0.16.1" hooks: - id: ruff-format types_or: [python, pyi, jupyter, markdown, pyproject] @@ -256,7 +256,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.0" + rev: "v0.16.1" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -670,7 +670,7 @@ additional_dependencies: [attrs==23.1.0] :sync: pyrefly ```yaml - repo: https://github.com/facebook/pyrefly-pre-commit - rev: "1.1.1" + rev: "1.2.0" hooks: - id: pyrefly-check ``` @@ -683,7 +683,7 @@ with `additional_dependencies`, and pass extra flags via `args`. :sync: ty ```yaml - repo: https://github.com/astral-sh/ty-pre-commit - rev: "v0.0.63" + rev: "v0.0.65" hooks: - id: ty ``` diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index d5e7581c..2df259fd 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -37,7 +37,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.16.0" + rev: "v0.16.1" hooks: - id: ruff-check args: ["--fix"] @@ -113,7 +113,7 @@ repos: {%- if cookiecutter.__ci == "github" %} - repo: https://github.com/zizmorcore/zizmor-pre-commit - rev: "v1.28.0" + rev: "v1.29.0" hooks: - id: zizmor {%- endif %}