Skip to content
Merged
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
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"mypy>=1.0.0",
"mypy>=1.20.0,<1.21",
"black>=23.0.0",
"ruff>=0.1.0",
# Pin to exact version: codegen's variant numbering (e.g. CreateMediaBuyResponse1 vs
Expand Down Expand Up @@ -238,4 +238,12 @@ dev = [
"datamodel-code-generator==0.56.1",
"pre-commit>=4.4.0",
"types-protobuf>=7.34.1.20260408",
# Pinned in the dev group so ``uv run mypy`` (used by the pre-commit
# hook) installs mypy into the project venv instead of falling
# through to whatever ``mypy`` happens to be on $PATH (e.g. a
# homebrew install). Without this, pre-commit's mypy version drifts
# from CI's, producing a different error count than CI on the same
# source — and a dead-weight hook that everyone bypasses with
# ``SKIP=mypy``.
"mypy>=1.20.0",
]
Loading