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.4.0 → v4.6.0](pre-commit/pre-commit-hooks@v4.4.0...v4.6.0)
- [github.com/abravalheri/validate-pyproject: v0.13 → v0.19](abravalheri/validate-pyproject@v0.13...v0.19)
- [github.com/asottile/pyupgrade: v3.4.0 → v3.17.0](asottile/pyupgrade@v3.4.0...v3.17.0)
- [github.com/psf/black: 23.3.0 → 24.8.0](psf/black@23.3.0...24.8.0)
- [github.com/PyCQA/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/PyCQA/docformatter: v1.7.1 → v1.7.5](PyCQA/docformatter@v1.7.1...v1.7.5)
- [github.com/asottile/blacken-docs: 1.13.0 → 1.18.0](adamchainz/blacken-docs@1.13.0...1.18.0)
- [github.com/asottile/dead: v1.5.1 → v1.5.2](asottile/dead@v1.5.1...v1.5.2)
- [github.com/sphinx-contrib/sphinx-lint: v0.6.7 → v1.0.0](sphinx-contrib/sphinx-lint@v0.6.7...v1.0.0)
- [github.com/PyCQA/doc8: v1.1.1 → v1.1.2](PyCQA/doc8@v1.1.1...v1.1.2)
- [github.com/pre-commit/mirrors-mypy: v1.3.0 → v1.11.2](pre-commit/mirrors-mypy@v1.3.0...v1.11.2)
- https://github.com/charliermarsh/ruff-pre-commithttps://github.com/astral-sh/ruff-pre-commit
- [github.com/astral-sh/ruff-pre-commit: v0.0.269 → v0.6.7](astral-sh/ruff-pre-commit@v0.0.269...v0.6.7)
- [github.com/PyCQA/pylint: v2.17.4 → v3.3.0](pylint-dev/pylint@v2.17.4...v3.3.0)
- [github.com/PyCQA/bandit: 1.7.5 → 1.7.10](PyCQA/bandit@1.7.5...1.7.10)
  • Loading branch information
pre-commit-ci[bot] authored Sep 23, 2024
1 parent 74cac28 commit 2574269
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 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.4.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: check-toml
Expand All @@ -19,47 +19,47 @@ repos:

# Verify the contents of pyproject.toml
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.13
rev: v0.19
hooks:
- id: validate-pyproject

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

# General Project code formatter.
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 24.8.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.12.0
rev: 5.13.2
hooks:
- id: isort
args: ['--profile=black']

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

# Formats code-blocks in documentation.
- repo: https://github.com/asottile/blacken-docs
rev: 1.13.0
rev: 1.18.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 All @@ -69,13 +69,13 @@ repos:
# Lint documentation source.
- repo: https://github.com/sphinx-contrib/sphinx-lint
# Make sure to also update the additional dependency pin
rev: v0.6.7
rev: v1.0.0
hooks:
- id: sphinx-lint

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

Expand All @@ -91,14 +91,14 @@ repos:

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

# A faster python linter
- repo: https://github.com/charliermarsh/ruff-pre-commit
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: 'v0.0.269'
rev: 'v0.6.7'
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.3.0
hooks:
# Pylint is also run from within pre-commit for CI purposes.
- id: pylint
Expand All @@ -129,7 +129,7 @@ repos:

# Lint code for security flaws.
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
rev: 1.7.10
hooks:
- id: bandit
# Assert is used exclusively in pytest.
Expand Down

0 comments on commit 2574269

Please sign in to comment.