From 7a1a0dec4f52d7ec224de9fcdc2f472ad6631878 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 21:26:50 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/psf/black-pre-commit-mirror: 25.11.0 → 25.12.0](https://github.com/psf/black-pre-commit-mirror/compare/25.11.0...25.12.0) - [github.com/asottile/pyupgrade: v3.21.1 → v3.21.2](https://github.com/asottile/pyupgrade/compare/v3.21.1...v3.21.2) - [github.com/pre-commit/mirrors-eslint: v9.39.1 → v10.0.0-alpha.1](https://github.com/pre-commit/mirrors-eslint/compare/v9.39.1...v10.0.0-alpha.1) - [github.com/pre-commit/mirrors-mypy: v1.18.2 → v1.19.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.18.2...v1.19.0) --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c78c7d68..1fd4fdea 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.11.0 + rev: 25.12.0 hooks: - id: black args: [--safe, --quiet, --line-length=88] @@ -45,13 +45,13 @@ repos: args: ["--application-directories=.:src:testing", --py3-plus] - repo: https://github.com/asottile/pyupgrade - rev: v3.21.1 + rev: v3.21.2 hooks: - id: pyupgrade args: [--py39-plus] - repo: https://github.com/pre-commit/mirrors-eslint - rev: v9.39.1 + rev: v10.0.0-alpha.1 hooks: - id: eslint additional_dependencies: @@ -59,7 +59,7 @@ repos: - eslint-config-google@0.14.0 args: ["--fix"] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.18.2 + rev: v1.19.0 hooks: - id: mypy files: ^(src/pytest_html|testing) From 8fe0c45334876ee2ddbb664d532ca89ab228b7b0 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Mon, 15 Dec 2025 18:55:27 +0100 Subject: [PATCH 2/2] Fix rst-lint: error: unrecognized arguments: --encoding --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1fd4fdea..a23f4c66 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -69,7 +69,7 @@ repos: hooks: - id: rst name: rst - entry: rst-lint --encoding utf-8 + entry: rst-lint files: ^(README.rst)$ language: python additional_dependencies: [pygments, restructuredtext_lint]