Skip to content

Commit a6b72e6

Browse files
authored
don't install all dev reqs in mypy
1 parent 2f0604b commit a6b72e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def safety(session: Session) -> None:
202202
def mypy(session: Session) -> None:
203203
"""Type-check using mypy."""
204204
args = session.posargs or ["src", "tests", "docs/conf.py"]
205-
session_install_uv(session, install_dev=True)
205+
session_install_uv(session)
206206
session_install_uv_package(session, ["mypy", "pytest"])
207207
session.run("mypy", *args)
208208
if not session.posargs:

0 commit comments

Comments
 (0)