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/asottile/pyupgrade: v3.4.0 → v3.7.0](asottile/pyupgrade@v3.4.0...v3.7.0)
- [github.com/PyCQA/docformatter: v1.7.1 → v1.7.3](PyCQA/docformatter@v1.7.1...v1.7.3)
- [github.com/asottile/blacken-docs: 1.13.0 → 1.14.0](adamchainz/blacken-docs@1.13.0...1.14.0)
- [github.com/asottile/dead: v1.5.1 → v1.5.2](asottile/dead@v1.5.1...v1.5.2)
- [github.com/pre-commit/mirrors-mypy: v1.3.0 → v1.4.1](pre-commit/mirrors-mypy@v1.3.0...v1.4.1)
- [github.com/charliermarsh/ruff-pre-commit: v0.0.269 → v0.0.275](astral-sh/ruff-pre-commit@v0.0.269...v0.0.275)
- [github.com/PyCQA/pylint: v2.17.4 → v3.0.0a6](pylint-dev/pylint@v2.17.4...v3.0.0a6)
  • Loading branch information
pre-commit-ci[bot] authored Jun 26, 2023
1 parent 74cac28 commit 5180add
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 @@ -25,7 +25,7 @@ repos:

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

Expand All @@ -45,21 +45,21 @@ repos:

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

# Formats code-blocks in documentation.
- repo: https://github.com/asottile/blacken-docs
rev: 1.13.0
rev: 1.14.0
hooks:
- id: blacken-docs
# Note - on black update blacken-docs pin should also be updated.
additional_dependencies: ['black==22.12.0']

# Used to detect unintentionally unused code.
- repo: https://github.com/asottile/dead
rev: v1.5.1
rev: v1.5.2
hooks:
- id: dead
args: [
Expand Down Expand Up @@ -91,14 +91,14 @@ repos:

# Static typehint linting.
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
rev: v1.4.1
hooks:
- id: mypy

# A faster python linter
- repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version.
rev: 'v0.0.269'
rev: 'v0.0.275'
hooks:
- id: ruff

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

# Lint code in pre-commit env, note: This ignores import checks.
- repo: https://github.com/PyCQA/pylint
rev: v2.17.4
rev: v3.0.0a6
hooks:
# Pylint is also run from within pre-commit for CI purposes.
- id: pylint
Expand Down

0 comments on commit 5180add

Please sign in to comment.