build: add numpy for mypy typing

This commit is contained in:
Anand Balakrishnan 2023-09-07 13:31:46 -07:00
parent 475d32c533
commit 7129177ca0
No known key found for this signature in database

View file

@ -71,7 +71,7 @@ def ruff(session: nox.Session):
@nox.session(tags=["lint"])
def mypy(session: nox.Session):
session.conda_install("mypy", "typing-extensions", "pytest", "hypothesis")
session.conda_install("mypy", "typing-extensions", "pytest", "hypothesis", "numpy")
session.env.update(ENV)
with session.chdir(CURRENT_DIR / "pyargus"):
session.install("-e", ".")