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
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ repos:
- id: mypy
name: mypy
stages: [pre-push]
entry: uv run --extra=dev -m mypy
entry: uv run --extra=dev -m mypy --num-workers=4
language: python
types_or: [python, toml]
pass_filenames: false
Expand All @@ -185,7 +185,8 @@ repos:
- id: mypy-docs
name: mypy-docs
stages: [pre-push]
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="mypy"
entry: uv run --extra=dev doccmd --no-write-to-file --language=python --command="mypy
--num-workers=4"
language: python
types_or: [markdown, rst]

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ optional-dependencies.dev = [
"freezegun==1.5.5",
"furo==2025.12.19",
"interrogate==1.7.0",
"mypy[faster-cache]==1.20.2",
"mypy[faster-cache]==2.0.0",
"mypy-strict-kwargs==2026.1.12",
"prek==0.3.11",
"pydocstringformatter==0.7.5",
Expand Down
Loading