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 @@ -2,7 +2,7 @@ ci:
autoupdate_schedule: monthly
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.20
rev: v0.16.1
hooks:
- id: ruff-check
- id: ruff-format
Expand All @@ -12,7 +12,7 @@ repos:
- id: check-github-workflows
- id: check-readthedocs
- repo: https://github.com/zizmorcore/zizmor-pre-commit
rev: v1.26.1
rev: v1.29.0
hooks:
- id: zizmor
- repo: https://github.com/asottile/blacken-docs
Expand All @@ -21,6 +21,6 @@ repos:
- id: blacken-docs
additional_dependencies: [black==25.1.0]
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.11.26
rev: 0.12.1
hooks:
- id: uv-lock
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,7 @@ docs = [
]
tests = ["pytest", "pytest-lazy-fixtures"]
lint = ["pre-commit>=3.5,<5.0"]
dev = [
{ include-group = "tests" },
{ include-group = "lint" },
"tox",
"tox-uv",
]
dev = [{ include-group = "tests" }, { include-group = "lint" }, "tox", "tox-uv"]

[tool.uv]
default-groups = ["dev"]
Expand Down Expand Up @@ -70,6 +65,7 @@ ignore = [
"ANN", # let mypy handle annotation checks
"ARG", # unused arguments are common w/ interfaces
"C901", # don't enforce complexity level
"CPY001", # don't require copyright notice at top of file
"COM", # let formatter take care commas
"D", # don't require docstrings
"DTZ007", # ignore false positives due to https://github.com/astral-sh/ruff/issues/1306
Expand Down
Loading