Skip to content

Commit adaac52

Browse files
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/asottile/pyupgrade: v3.4.0 → v3.9.0](asottile/pyupgrade@v3.4.0...v3.9.0) - [github.com/psf/black: 23.3.0 → 23.7.0](psf/black@23.3.0...23.7.0) - [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.15.0](adamchainz/blacken-docs@1.13.0...1.15.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) - 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.0.280](astral-sh/ruff-pre-commit@v0.0.269...v0.0.280) - [github.com/PyCQA/pylint: v2.17.4 → v3.0.0a6](pylint-dev/pylint@v2.17.4...v3.0.0a6)
1 parent 74cac28 commit adaac52

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.pre-commit-config.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ repos:
2525

2626
# Updating code to use modern python patterns where available.
2727
- repo: https://github.com/asottile/pyupgrade
28-
rev: v3.4.0
28+
rev: v3.9.0
2929
hooks:
3030
- id: pyupgrade
3131

3232
# General Project code formatter.
3333
- repo: https://github.com/psf/black
34-
rev: 23.3.0
34+
rev: 23.7.0
3535
hooks:
3636
- id: black
3737

@@ -45,21 +45,21 @@ repos:
4545

4646
# Formats python docstrings.
4747
- repo: https://github.com/PyCQA/docformatter
48-
rev: v1.7.1
48+
rev: v1.7.5
4949
hooks:
5050
- id: docformatter
5151

5252
# Formats code-blocks in documentation.
5353
- repo: https://github.com/asottile/blacken-docs
54-
rev: 1.13.0
54+
rev: 1.15.0
5555
hooks:
5656
- id: blacken-docs
5757
# Note - on black update blacken-docs pin should also be updated.
5858
additional_dependencies: ['black==22.12.0']
5959

6060
# Used to detect unintentionally unused code.
6161
- repo: https://github.com/asottile/dead
62-
rev: v1.5.1
62+
rev: v1.5.2
6363
hooks:
6464
- id: dead
6565
args: [
@@ -91,14 +91,14 @@ repos:
9191

9292
# Static typehint linting.
9393
- repo: https://github.com/pre-commit/mirrors-mypy
94-
rev: v1.3.0
94+
rev: v1.4.1
9595
hooks:
9696
- id: mypy
9797

9898
# A faster python linter
99-
- repo: https://github.com/charliermarsh/ruff-pre-commit
99+
- repo: https://github.com/astral-sh/ruff-pre-commit
100100
# Ruff version.
101-
rev: 'v0.0.269'
101+
rev: 'v0.0.280'
102102
hooks:
103103
- id: ruff
104104

@@ -118,7 +118,7 @@ repos:
118118

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

0 commit comments

Comments
 (0)