Skip to content

Commit 790e591

Browse files
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.4.0...v5.0.0) - [github.com/PyCQA/autoflake: v2.0.0 → v2.3.1](PyCQA/autoflake@v2.0.0...v2.3.1) - [github.com/PyCQA/isort: 5.11.4 → 5.13.2](PyCQA/isort@5.11.4...5.13.2) - [github.com/asottile/pyupgrade: v3.3.1 → v3.19.1](asottile/pyupgrade@v3.3.1...v3.19.1) - [github.com/psf/black: 22.12.0 → 24.10.0](psf/black@22.12.0...24.10.0) - [github.com/keewis/blackdoc: v0.3.8 → v0.3.9](keewis/blackdoc@v0.3.8...v0.3.9) - [github.com/PyCQA/flake8: 6.0.0 → 7.1.1](PyCQA/flake8@6.0.0...7.1.1) - [github.com/pre-commit/mirrors-mypy: v0.991 → v1.14.1](pre-commit/mirrors-mypy@v0.991...v1.14.1)
1 parent ff494e2 commit 790e591

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.pre-commit-config.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ci:
33
autoupdate_schedule: quarterly
44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.4.0
6+
rev: v5.0.0
77
hooks:
88
- id: trailing-whitespace
99
- id: end-of-file-fixer
@@ -12,38 +12,38 @@ repos:
1212
- id: mixed-line-ending
1313
# This wants to go before isort & flake8
1414
- repo: https://github.com/PyCQA/autoflake
15-
rev: "v2.0.0"
15+
rev: "v2.3.1"
1616
hooks:
1717
- id: autoflake # isort should run before black as black sometimes tweaks the isort output
1818
args: ["--in-place", "--remove-all-unused-imports", "--ignore-init-module-imports"]
1919
- repo: https://github.com/PyCQA/isort
20-
rev: 5.11.4
20+
rev: 5.13.2
2121
hooks:
2222
- id: isort
2323
args: ["--profile", "black"]
2424
- repo: https://github.com/asottile/pyupgrade
25-
rev: v3.3.1
25+
rev: v3.19.1
2626
hooks:
2727
- id: pyupgrade
2828
args:
2929
- "--py38-plus"
3030
# https://github.com/python/black#version-control-integration
3131
- repo: https://github.com/psf/black
32-
rev: 22.12.0
32+
rev: 24.10.0
3333
hooks:
3434
- id: black
3535
- id: black-jupyter
3636
- repo: https://github.com/keewis/blackdoc
37-
rev: v0.3.8
37+
rev: v0.3.9
3838
hooks:
3939
- id: blackdoc
4040
exclude: docs/index.rst
4141
- repo: https://github.com/PyCQA/flake8
42-
rev: 6.0.0
42+
rev: 7.1.1
4343
hooks:
4444
- id: flake8
4545
- repo: https://github.com/pre-commit/mirrors-mypy
46-
rev: v0.991
46+
rev: v1.14.1
4747
hooks:
4848
- id: mypy
4949
additional_dependencies: [

0 commit comments

Comments
 (0)