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/pycqa/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/psf/black: 23.1.0 → 24.4.2](psf/black@23.1.0...24.4.2)
- [github.com/PyCQA/autoflake: v2.0.2 → v2.3.1](PyCQA/autoflake@v2.0.2...v2.3.1)
- [github.com/pre-commit/mirrors-mypy: v1.1.1 → v1.10.0](pre-commit/mirrors-mypy@v1.1.1...v1.10.0)
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.6.0](pre-commit/pre-commit-hooks@v4.4.0...v4.6.0)
- [github.com/codespell-project/codespell: v2.2.4 → v2.2.6](codespell-project/codespell@v2.2.4...v2.2.6)
  • Loading branch information
pre-commit-ci[bot] authored Apr 29, 2024
1 parent b21fefd commit 46df1c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
repos:
# Sort order of Python imports
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
# Python code formatting
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 24.4.2
hooks:
- id: black
# Remove unused Python imports
- repo: https://github.com/PyCQA/autoflake
rev: v2.0.2
rev: v2.3.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.10.0'
hooks:
- id: mypy
exclude: ^src/demcmc/tests|^doc/tutorials
additional_dependencies: [types-setuptools]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-yaml

- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.2.6
hooks:
- id: codespell
args: ['--toml pyproject.toml']

0 comments on commit 46df1c3

Please sign in to comment.