Skip to content
Open
Changes from 2 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
16 changes: 10 additions & 6 deletions mypy_primer/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ def get_projects() -> list[Project]:
"numpy",
"packaging",
"pandas-stubs",
"scipy-stubs",
"types-PyYAML",
"types-Pygments",
"types-colorama",
Expand Down Expand Up @@ -439,6 +440,7 @@ def get_projects() -> list[Project]:
"numpy",
"pandas-stubs",
"pydantic",
"scipy-stubs",
"sqlalchemy",
"types-cachetools",
"types-filelock",
Expand Down Expand Up @@ -477,6 +479,7 @@ def get_projects() -> list[Project]:
"alembic",
"numpy",
"packaging",
"scipy-stubs",
"sqlalchemy",
"types-PyYAML",
"types-redis",
Expand Down Expand Up @@ -517,7 +520,7 @@ def get_projects() -> list[Project]:
mypy_cmd="{mypy} --ignore-missing-imports {paths}",
pyright_cmd="{pyright} {paths}",
paths=["dedupe"],
deps=["numpy"],
deps=["numpy", "scipy-stubs"],
needs_mypy_plugins=True,
expected_success=("mypy",),
cost={"mypy": 27},
Expand Down Expand Up @@ -680,7 +683,7 @@ def get_projects() -> list[Project]:
mypy_cmd="{mypy} --config python/mypy.ini {paths}",
pyright_cmd="{pyright} {paths}",
paths=["python/pyspark"],
deps=["numpy", "pandas-stubs"],
deps=["numpy", "pandas-stubs", "scipy-stubs"],
expected_success=("mypy",),
cost={"mypy": 61, "pyright": 110},
),
Expand Down Expand Up @@ -778,6 +781,7 @@ def get_projects() -> list[Project]:
"packaging",
"pandas-stubs",
"pydantic",
"scipy-stubs",
"typeguard",
"types-click",
"types-PyYAML",
Expand Down Expand Up @@ -852,7 +856,7 @@ def get_projects() -> list[Project]:
mypy_cmd="{mypy} {paths}",
pyright_cmd="{pyright} {paths}",
paths=["sympy"],
deps=["mpmath"],
deps=["mpmath", "numpy", "scipy-stubs"],
expected_success=("mypy",),
cost={"mypy": 127, "pyright": 240},
),
Expand Down Expand Up @@ -1332,7 +1336,7 @@ def get_projects() -> list[Project]:
mypy_cmd="{mypy} {paths}",
pyright_cmd="{pyright} {paths}",
paths=["src", "release"],
deps=["types-boto", "tornado", "numpy", "jinja2", "selenium"],
deps=["types-boto", "tornado", "numpy", "jinja2", "scipy-stubs", "selenium"],
cost={"pyright": 60, "mypy": 39},
),
Project(
Expand All @@ -1348,6 +1352,7 @@ def get_projects() -> list[Project]:
"pyarrow",
"jinja2",
"pytest",
"scipy-stubs",
"SQLAlchemy",
],
expected_success=("pyright",),
Expand Down Expand Up @@ -1381,7 +1386,6 @@ def get_projects() -> list[Project]:
"packaging",
"PyWinCtl",
"PySide6-Essentials",
"scipy-stubs",
"types-D3DShot",
"types-keyboard",
"types-Pillow",
Expand Down Expand Up @@ -1532,7 +1536,7 @@ def get_projects() -> list[Project]:
mypy_cmd="{mypy} {paths}",
pyright_cmd="{pyright} {paths}",
paths=["static_frame"],
deps=["numpy", "arraykit==0.10.0"],
deps=["numpy", "arraykit==0.10.0", "scipy-stubs"],
cost={"mypy": 101},
),
Project(
Expand Down