Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate
Browse files Browse the repository at this point in the history
updates:
- [github.com/psf/black: 23.1.0 → 23.7.0](psf/black@23.1.0...23.7.0)
- [github.com/PyCQA/autoflake: v2.0.2 → v2.2.1](PyCQA/autoflake@v2.0.2...v2.2.1)
- [github.com/pre-commit/mirrors-mypy: v1.1.1 → v1.5.1](pre-commit/mirrors-mypy@v1.1.1...v1.5.1)
- [github.com/codespell-project/codespell: v2.2.4 → v2.2.5](codespell-project/codespell@v2.2.4...v2.2.5)
  • Loading branch information
pre-commit-ci[bot] committed Sep 5, 2023
1 parent b21fefd commit 0a22fd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ repos:
- id: isort
# Python code formatting
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 23.7.0
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
Expand All @@ -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']

0 comments on commit 0a22fd3

Please sign in to comment.