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/pre-commit/pre-commit-hooks: v4.3.0 → v4.4.0](pre-commit/pre-commit-hooks@v4.3.0...v4.4.0)
- [github.com/codespell-project/codespell: v2.2.2 → v2.2.5](codespell-project/codespell@v2.2.2...v2.2.5)
- [github.com/asottile/pyupgrade: v3.2.2 → v3.10.1](asottile/pyupgrade@v3.2.2...v3.10.1)
- [github.com/hadialqattan/pycln: v2.1.2 → v2.2.2](hadialqattan/pycln@v2.1.2...v2.2.2)
- [github.com/PyCQA/isort: 5.10.1 → 5.12.0](PyCQA/isort@5.10.1...5.12.0)
- [github.com/psf/black: 22.10.0 → 23.7.0](psf/black@22.10.0...23.7.0)
- [github.com/pycqa/flake8: 5.0.4 → 6.1.0](PyCQA/flake8@5.0.4...6.1.0)
  • Loading branch information
pre-commit-ci[bot] authored Aug 14, 2023
1 parent 420d961 commit b6c20b5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:

# Standard hooks
- 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-merge-conflict
Expand All @@ -27,7 +27,7 @@ repos:

# Check for spelling
- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
rev: v2.2.5
hooks:
- id: codespell
args: ["-L", "fo"]
Expand All @@ -54,34 +54,34 @@ repos:

# Upgrade old Python syntax
- repo: https://github.com/asottile/pyupgrade
rev: v3.2.2
rev: v3.10.1
hooks:
- id: pyupgrade
args: [--py310-plus]

# Autoremoves unused imports
- repo: https://github.com/hadialqattan/pycln
rev: "v2.1.2"
rev: "v2.2.2"
hooks:
- id: pycln
stages: [manual]

# Sort includes
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
args: ["--profile", "black"]

# Black format Python and notebooks
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.7.0
hooks:
- id: black-jupyter

# Check Python with flake8
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
rev: 6.1.0
hooks:
- id: flake8
args:
Expand Down

0 comments on commit b6c20b5

Please sign in to comment.