Skip to content

Commit 563b1f8

Browse files
authored
Merge pull request #230 from xylar/update-pre-commit-deps
Update pre-commit dependencies
2 parents a010381 + d9ef5a9 commit 563b1f8

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.pre-commit-config.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ fail_fast: true
44

55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.3.0
7+
rev: v4.6.0
88
hooks:
99
- id: trailing-whitespace
1010
- id: end-of-file-fixer
1111

1212
# Can run individually with `pre-commit run isort --all-files`
1313
- repo: https://github.com/PyCQA/isort
14-
rev: 5.12.0
14+
rev: 5.13.2
1515
hooks:
1616
- id: isort
1717

1818
# Can run individually with `flynt [file]` or `flynt [source]`
1919
- repo: https://github.com/ikamensh/flynt
20-
rev: '0.78'
20+
rev: '1.0.1'
2121
hooks:
2222
- id: flynt
2323
args: ["--fail-on-change", "--verbose"]
@@ -27,17 +27,22 @@ repos:
2727
# Need to use flake8 GitHub mirror due to CentOS git issue with GitLab
2828
# https://github.com/pre-commit/pre-commit/issues/1206
2929
- repo: https://github.com/pycqa/flake8
30-
rev: 6.0.0
30+
rev: 7.1.1
3131
hooks:
3232
- id: flake8
3333
args: ["--config=setup.cfg"]
3434
additional_dependencies: [flake8-isort]
3535

3636
# Can run individually with `pre-commit run mypy --all-files`
3737
- repo: https://github.com/pre-commit/mirrors-mypy
38-
rev: v0.991
38+
rev: v1.11.2
3939
hooks:
4040
- id: mypy
4141
args: ["--config=setup.cfg", "--show-error-codes"]
4242
verbose: true
4343
additional_dependencies: ['types-requests']
44+
45+
# https://pre-commit.ci/#configuration
46+
ci:
47+
autofix_prs: false
48+
autoupdate_schedule: monthly

0 commit comments

Comments
 (0)