Skip to content

Commit d690050

Browse files
chore: remove mypy from lint pipeline
mypy takes ~56 minutes on this codebase (2000+ generated type files) and crashes with INTERNAL ERROR on _utils.py. This causes CI lint job to consistently timeout at 10 minutes. pyright already covers type checking and completes in under 30 seconds. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 36c571b commit d690050

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ conflicts = [
5757
# version pins are in uv.lock
5858
dev = [
5959
"pyright==1.1.399",
60-
"mypy==1.17",
60+
6161
"respx",
6262
"pytest",
6363
"pytest-asyncio",

scripts/lint

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,5 @@ fi
1515
echo "==> Running pyright"
1616
uv run pyright
1717

18-
echo "==> Running mypy"
19-
uv run mypy .
20-
2118
echo "==> Making sure it imports"
2219
uv run python -c 'import hubspot_sdk'

0 commit comments

Comments
 (0)