Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate
Browse files Browse the repository at this point in the history
updates:
- [github.com/psf/black: 22.8.0 → 23.3.0](psf/black@22.8.0...23.3.0)
- [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v4.4.0](pre-commit/pre-commit-hooks@v4.3.0...v4.4.0)
- [github.com/PyCQA/flake8: 5.0.4 → 6.0.0](PyCQA/flake8@5.0.4...6.0.0)
- [github.com/pre-commit/mirrors-mypy: v0.981 → v1.4.1](pre-commit/mirrors-mypy@v0.981...v1.4.1)
- [github.com/codespell-project/codespell: v2.2.1 → v2.2.5](codespell-project/codespell@v2.2.1...v2.2.5)
- [github.com/asottile/pyupgrade: v2.38.2 → v3.8.0](asottile/pyupgrade@v2.38.2...v3.8.0)
  • Loading branch information
pre-commit-ci[bot] committed Jul 4, 2023
1 parent 3b05ae2 commit 087d231
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,13 +1,13 @@
repos:
- repo: https://github.com/psf/black
rev: 22.8.0
rev: 23.3.0
hooks:
- id: black
language_version: python3.7
args: ["-l", "80", "-t", "py36"]
exclude: "notebooks/.*"
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -22,24 +22,24 @@ repos:
- id: check-shebang-scripts-are-executable
- id: check-executables-have-shebangs
- repo: https://github.com/PyCQA/flake8
rev: '5.0.4' # pick a git hash / tag to point to
rev: '6.0.0' # pick a git hash / tag to point to
hooks:
- id: flake8
exclude: ^notebooks
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v0.981' # Use the sha / tag you want to point at
rev: 'v1.4.1' # Use the sha / tag you want to point at
hooks:
- id: mypy
exclude: "config_gen.py|conftest.py|notebooks/"
additional_dependencies:
- types-PyYAML
- repo: https://github.com/codespell-project/codespell
rev: 'v2.2.1'
rev: 'v2.2.5'
hooks:
- id: codespell
args: ["-I", "codespell.txt"]
- repo: https://github.com/asottile/pyupgrade
rev: v2.38.2
rev: v3.8.0
hooks:
- id: pyupgrade
args: ["--py36-plus"]
Expand Down

0 comments on commit 087d231

Please sign in to comment.