Skip to content

Commit 3f23d42

Browse files
committed
Tooling update.
Black 24 -> 25 flake8 pre-commit 7.2.0 -> 7.3.0
1 parent 15ece68 commit 3f23d42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repos:
2222
language_version: python3.13
2323
name: black (Python formatter)
2424
- repo: https://github.com/pycqa/flake8
25-
rev: 7.2.0
25+
rev: 7.3.0
2626
hooks:
2727
- id: flake8
2828
name: flake8 (Python linter)

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def format_black(session: nox.Session) -> None:
227227
Check code formatting with Black.
228228
229229
"""
230-
session.install("black>=24.0,<25.0")
230+
session.install("black>=25.0,<26.0")
231231
session.run(f"python{session.python}", "-Im", "black", "--version")
232232
session.run(
233233
f"python{session.python}",

0 commit comments

Comments
 (0)