Skip to content

Commit 788bb42

Browse files
committed
⬆️ Upgrade pre-commit hooks and dependencies
Update various pre-commit hooks to their latest versions: - pre-commit-hooks: v4.6.0 -> v5.0.0 - texthooks: 0.6.6 -> 0.6.8 - black: 24.4.2 -> 24.10.0 - ruff: v0.5.0 -> v0.9.2 These updates ensure we're using the most recent versions of our code quality tools, potentially bringing performance improvements and new features.
1 parent ba430c6 commit 788bb42

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude: '\.git/|__pycache__/|\.pyc'
55

66
repos:
77
- repo: https://github.com/pre-commit/pre-commit-hooks
8-
rev: v4.6.0
8+
rev: v5.0.0
99
hooks:
1010
- id: check-added-large-files
1111
args: [--maxkb=500]
@@ -26,12 +26,12 @@ repos:
2626
- id: remove-tabs
2727

2828
- repo: https://github.com/sirosen/texthooks
29-
rev: 0.6.6
29+
rev: 0.6.8
3030
hooks:
3131
- id: fix-smartquotes
3232

3333
- repo: https://github.com/psf/black
34-
rev: 24.4.2
34+
rev: 24.10.0
3535
hooks:
3636
- id: black
3737

@@ -48,6 +48,6 @@ repos:
4848

4949
# Ruff replaces flake8 and pylint and more
5050
- repo: https://github.com/charliermarsh/ruff-pre-commit
51-
rev: v0.5.0
51+
rev: v0.9.2
5252
hooks:
5353
- id: ruff

0 commit comments

Comments
 (0)