Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ ci:

repos:
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 6.0.0
hooks:
- id: isort
name: isort
Expand All @@ -27,7 +27,7 @@ repos:
- id: python-check-blanket-type-ignore
exclude: "test_type_ignore.py"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.6
rev: v0.9.4
hooks:
- id: ruff
- repo: local
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cog.out(
]]] -->
```bash
$ flake8 --version
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
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
```
<!-- [[[end]]] -->

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers = [

requires-python = ">=3.9"
dependencies = [
"attrs~=24.0",
"attrs~=25.0",
"flake8>=5.0",
]

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

[tool.uv]
dev-dependencies = [
"black~=24.10",
"black~=25.0",
"bump2version~=1.0",
"cogapp~=3.3",
"isort~=5.13",
"isort~=6.0",
"mypy~=1.11",
"pre-commit~=4.0",
"pytest~=8.3",
Expand Down
2 changes: 1 addition & 1 deletion testing/test_column_line_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_lineno(parsed_errors: Tuple[Generator[ERROR_CODE, None, None], ParserTe


def test_column_offset(
parsed_errors: Tuple[Generator[ERROR_CODE, None, None], ParserTestCase]
parsed_errors: Tuple[Generator[ERROR_CODE, None, None], ParserTestCase],
) -> None:
"""
Check for correct column number values.
Expand Down
Loading