Skip to content

Commit 4528d59

Browse files
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.0) - [github.com/hadialqattan/pycln: v2.1.3 → v2.3.0](hadialqattan/pycln@v2.1.3...v2.3.0) - https://github.com/sqlalchemyorg/zimports/: v0.6.0 → v0.6.1 - [github.com/psf/black: 23.3.0 → 23.10.1](psf/black@23.3.0...23.10.1) - [github.com/asottile/pyupgrade: v3.3.1 → v3.15.0](asottile/pyupgrade@v3.3.1...v3.15.0) - [github.com/pycqa/flake8: 5.0.4 → 6.1.0](PyCQA/flake8@5.0.4...6.1.0)
1 parent 778bda4 commit 4528d59

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
# Ensure that all files end with a newline
99
# Harmonize line endings
1010
- repo: https://github.com/pre-commit/pre-commit-hooks
11-
rev: v4.4.0
11+
rev: v4.5.0
1212
hooks:
1313
- id: check-added-large-files # prevents giant files from being committed.
1414
- id: check-case-conflict # checks for files that would conflict in case-insensitive filesystems.
@@ -24,7 +24,7 @@ repos:
2424

2525
# A formatter for finding and removing unused import statements.
2626
- repo: https://github.com/hadialqattan/pycln
27-
rev: v2.1.3
27+
rev: v2.3.0
2828
hooks:
2929
- id: pycln
3030
args: [ --all ]
@@ -34,27 +34,27 @@ repos:
3434
# is set to the same style that is enforced by zimports.
3535
# E.g. add `import-order-style = google` to your .flake8 file.
3636
- repo: https://github.com/sqlalchemyorg/zimports/
37-
rev: v0.6.0
37+
rev: v0.6.1
3838
hooks:
3939
- id: zimports
4040
args: [ --style=pycharm ]
4141

4242
# The uncompromising code formatter
4343
- repo: https://github.com/psf/black
44-
rev: 23.3.0
44+
rev: 23.10.1
4545
hooks:
4646
- id: black
4747

4848
# A tool to automatically upgrade syntax for newer versions of the python language.
4949
- repo: https://github.com/asottile/pyupgrade
50-
rev: v3.3.1
50+
rev: v3.15.0
5151
hooks:
5252
- id: pyupgrade
5353
args: [ --py36-plus ]
5454

5555
# A tool to automatically fix common style issues in Python code. Has plugins.
5656
- repo: https://github.com/pycqa/flake8
57-
rev: '5.0.4'
57+
rev: '6.1.0'
5858
hooks:
5959
- id: flake8
6060
exclude: (__pycache__|.venv|tmp|.tox)

0 commit comments

Comments
 (0)