Skip to content

Commit f2ccfde

Browse files
[pre-commit.ci] pre-commit autoupdate (#179)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: S. Co1 <[email protected]>
1 parent 7b3bdd5 commit f2ccfde

File tree

5 files changed

+213
-208
lines changed

5 files changed

+213
-208
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ ci:
44

55
repos:
66
- repo: https://github.com/psf/black
7-
rev: 24.10.0
7+
rev: 25.1.0
88
hooks:
99
- id: black
1010
- repo: https://github.com/pycqa/isort
11-
rev: 5.13.2
11+
rev: 6.0.0
1212
hooks:
1313
- id: isort
1414
name: isort
@@ -27,7 +27,7 @@ repos:
2727
- id: python-check-blanket-type-ignore
2828
exclude: "test_type_ignore.py"
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.8.6
30+
rev: v0.9.4
3131
hooks:
3232
- id: ruff
3333
- repo: local

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ cog.out(
3131
]]] -->
3232
```bash
3333
$ flake8 --version
34-
7.1.1 (flake8-annotations: 3.1.1, mccabe: 0.7.0, pycodestyle: 2.12.1, pyflakes: 3.2.0) CPython 3.13.0 on Darwin
34+
7.1.1 (flake8-annotations: 3.1.1, mccabe: 0.7.0, pycodestyle: 2.12.1, pyflakes: 3.2.0) CPython 3.13.1 on Darwin
3535
```
3636
<!-- [[[end]]] -->
3737

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232

3333
requires-python = ">=3.9"
3434
dependencies = [
35-
"attrs~=24.0",
35+
"attrs~=25.0",
3636
"flake8>=5.0",
3737
]
3838

@@ -48,10 +48,10 @@ Changelog = "https://github.com/sco1/flake8-annotations/blob/main/CHANGELOG.md"
4848

4949
[tool.uv]
5050
dev-dependencies = [
51-
"black~=24.10",
51+
"black~=25.0",
5252
"bump2version~=1.0",
5353
"cogapp~=3.3",
54-
"isort~=5.13",
54+
"isort~=6.0",
5555
"mypy~=1.11",
5656
"pre-commit~=4.0",
5757
"pytest~=8.3",

testing/test_column_line_numbers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_lineno(parsed_errors: Tuple[Generator[ERROR_CODE, None, None], ParserTe
4848

4949

5050
def test_column_offset(
51-
parsed_errors: Tuple[Generator[ERROR_CODE, None, None], ParserTestCase]
51+
parsed_errors: Tuple[Generator[ERROR_CODE, None, None], ParserTestCase],
5252
) -> None:
5353
"""
5454
Check for correct column number values.

0 commit comments

Comments
 (0)