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/PyCQA/autoflake: v2.0.0 → v2.2.0](PyCQA/autoflake@v2.0.0...v2.2.0)
- [github.com/PyCQA/isort: 5.11.4 → 5.12.0](PyCQA/isort@5.11.4...5.12.0)
- [github.com/asottile/pyupgrade: v3.3.1 → v3.8.0](asottile/pyupgrade@v3.3.1...v3.8.0)
- [github.com/psf/black: 22.12.0 → 23.3.0](psf/black@22.12.0...23.3.0)
- [github.com/pre-commit/mirrors-mypy: v0.991 → v1.4.1](pre-commit/mirrors-mypy@v0.991...v1.4.1)
  • Loading branch information
pre-commit-ci[bot] authored Jul 3, 2023
1 parent ff494e2 commit 213b2dc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ repos:
- id: mixed-line-ending
# This wants to go before isort & flake8
- repo: https://github.com/PyCQA/autoflake
rev: "v2.0.0"
rev: "v2.2.0"
hooks:
- id: autoflake # isort should run before black as black sometimes tweaks the isort output
args: ["--in-place", "--remove-all-unused-imports", "--ignore-init-module-imports"]
- repo: https://github.com/PyCQA/isort
rev: 5.11.4
rev: 5.12.0
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.8.0
hooks:
- id: pyupgrade
args:
- "--py38-plus"
# https://github.com/python/black#version-control-integration
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.3.0
hooks:
- id: black
- id: black-jupyter
Expand All @@ -43,7 +43,7 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
rev: v1.4.1
hooks:
- id: mypy
additional_dependencies: [
Expand Down

0 comments on commit 213b2dc

Please sign in to comment.