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/asottile/pyupgrade: v3.1.0 → v3.3.1](asottile/pyupgrade@v3.1.0...v3.3.1)
- [github.com/psf/black: 22.10.0 → 22.12.0](psf/black@22.10.0...22.12.0)
- [github.com/PyCQA/isort: 5.10.1 → 5.11.4](PyCQA/isort@5.10.1...5.11.4)
- [github.com/PyCQA/docformatter: v1.5.0 → v1.5.1](PyCQA/docformatter@v1.5.0...v1.5.1)
- [github.com/PyCQA/pylint: v2.15.5 → v2.15.9](pylint-dev/pylint@v2.15.5...v2.15.9)
- [github.com/PyCQA/doc8: v1.0.0 → v1.1.1](PyCQA/doc8@v1.0.0...v1.1.1)
- [github.com/pre-commit/mirrors-mypy: v0.982 → v0.991](pre-commit/mirrors-mypy@v0.982...v0.991)
  • Loading branch information
pre-commit-ci[bot] authored Dec 26, 2022
1 parent f0fd07e commit 480c423
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:
repos:

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: check-yaml
- id: check-toml
Expand All @@ -19,27 +19,27 @@ repos:

# Updating code to use modern python patterns where available.
- repo: https://github.com/asottile/pyupgrade
rev: v3.1.0
rev: v3.3.1
hooks:
- id: pyupgrade

# General Project code formatter.
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 22.12.0
hooks:
- id: black

# Sorts python imports.
- repo: https://github.com/PyCQA/isort
# Note - on black update blacken-docs pin should also be updated.
rev: 5.10.1
rev: 5.11.4
hooks:
- id: isort
args: ['--profile=black']

# Formats python docstrings.
- repo: https://github.com/PyCQA/docformatter
rev: v1.5.0
rev: v1.5.1
hooks:
- id: docformatter

Expand Down Expand Up @@ -76,7 +76,7 @@ repos:

# Lint code in pre-commit env, note: This ignores import checks.
- repo: https://github.com/PyCQA/pylint
rev: v2.15.5
rev: v2.15.9
hooks:
# Pylint is also run from within pre-commit for CI purposes.
- id: pylint
Expand All @@ -102,7 +102,7 @@ repos:

# lint documentation
- repo: https://github.com/PyCQA/doc8
rev: v1.0.0
rev: v1.1.1
hooks:
- id: doc8

Expand All @@ -118,6 +118,6 @@ repos:

# Static typehint linting.
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.982
rev: v0.991
hooks:
- id: mypy

0 comments on commit 480c423

Please sign in to comment.