Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fd30b7a

Browse files
authoredFeb 17, 2025··
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/pycqa/isort: 5.13.2 → 6.0.0](PyCQA/isort@5.13.2...6.0.0) - [github.com/psf/black: 24.8.0 → 25.1.0](psf/black@24.8.0...25.1.0) - [github.com/pre-commit/mirrors-mypy: v1.11.2 → v1.15.0](pre-commit/mirrors-mypy@v1.11.2...v1.15.0) - [github.com/pycqa/flake8: 7.1.1 → 7.1.2](PyCQA/flake8@7.1.1...7.1.2) - [github.com/asottile/pyupgrade: v3.17.0 → v3.19.1](asottile/pyupgrade@v3.17.0...v3.19.1) - [github.com/compilerla/conventional-pre-commit: v3.4.0 → v4.0.0](compilerla/conventional-pre-commit@v3.4.0...v4.0.0)
1 parent 11853c9 commit fd30b7a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎.pre-commit-config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pycqa/isort
3-
rev: 5.13.2
3+
rev: 6.0.0
44
hooks:
55
- id: isort
66
args: [
@@ -10,13 +10,13 @@ repos:
1010
]
1111

1212
- repo: https://github.com/psf/black
13-
rev: 24.8.0
13+
rev: 25.1.0
1414
hooks:
1515
- id: black
1616
language_version: python3.9
1717

1818
- repo: https://github.com/pre-commit/mirrors-mypy
19-
rev: "v1.11.2" # Use the sha / tag you want to point at
19+
rev: "v1.15.0" # Use the sha / tag you want to point at
2020
hooks:
2121
- id: mypy
2222
args: [ "--allow-untyped-globals", "--ignore-missing-imports" ]
@@ -33,7 +33,7 @@ repos:
3333
- id: check-added-large-files
3434

3535
- repo: https://github.com/pycqa/flake8
36-
rev: "7.1.1" # pick a git hash / tag to point to
36+
rev: "7.1.2" # pick a git hash / tag to point to
3737
hooks:
3838
- id: flake8
3939
args: [ "--ignore=E501,W503,W504,E203,E251,E266,E401,E126,E124,C901" ]
@@ -42,13 +42,13 @@ repos:
4242
]
4343

4444
- repo: https://github.com/asottile/pyupgrade
45-
rev: v3.17.0
45+
rev: v3.19.1
4646
hooks:
4747
- id: pyupgrade
4848
args:
4949
- "--py37-plus"
5050
- repo: https://github.com/compilerla/conventional-pre-commit
51-
rev: v3.4.0
51+
rev: v4.0.0
5252
hooks:
5353
- id: conventional-pre-commit
5454
stages: [commit-msg]

0 commit comments

Comments
 (0)
Please sign in to comment.