Skip to content

Commit

Permalink
add pandas stubs to mypy session
Browse files Browse the repository at this point in the history
  • Loading branch information
Altay Sansal committed Mar 1, 2024
1 parent d33db5e commit 6130513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def mypy(session: Session) -> None:
"""Type-check using mypy."""
args = session.posargs or ["src", "tests", "docs/conf.py"]
session.install(".")
session.install("mypy", "pytest")
session.install("mypy", "pytest", "pandas-stubs")
session.run("mypy", *args)
if not session.posargs:
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")
Expand Down

0 comments on commit 6130513

Please sign in to comment.