From e9e38cb913080b420c3ac58fd3f8a13cdee85185 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 00:44:55 +0000 Subject: [PATCH] [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: 23.1.0 → 23.9.1](https://github.com/psf/black/compare/23.1.0...23.9.1) - [github.com/PyCQA/autoflake: v2.0.2 → v2.2.1](https://github.com/PyCQA/autoflake/compare/v2.0.2...v2.2.1) - [github.com/pre-commit/mirrors-mypy: v1.1.1 → v1.5.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.1.1...v1.5.1) - [github.com/codespell-project/codespell: v2.2.4 → v2.2.5](https://github.com/codespell-project/codespell/compare/v2.2.4...v2.2.5) --- .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 7ab9f5a..5f3fb43 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,18 +6,18 @@ repos: - id: isort # Python code formatting - repo: https://github.com/psf/black - rev: 23.1.0 + rev: 23.9.1 hooks: - id: black # Remove unused Python imports - repo: https://github.com/PyCQA/autoflake - rev: v2.0.2 + rev: v2.2.1 hooks: - id: autoflake args: ["--in-place", "--remove-all-unused-imports", "--ignore-init-module-imports"] # Run mypy type validation - repo: https://github.com/pre-commit/mirrors-mypy - rev: 'v1.1.1' + rev: 'v1.5.1' hooks: - id: mypy exclude: ^src/demcmc/tests|^doc/tutorials @@ -29,7 +29,7 @@ repos: - id: check-yaml - repo: https://github.com/codespell-project/codespell - rev: v2.2.4 + rev: v2.2.5 hooks: - id: codespell args: ['--toml pyproject.toml']