Skip to content

Commit b5c64ed

Browse files
committed
Fix the typing noxenv.
So long as nox using uv is still broken (until wntrblm/nox#953 is released), `pip` can't handle installing the package "twice" this way (since it appears in the requirements file, even though in a compatible way).
1 parent 79acaab commit b5c64ed

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
@@ -102,7 +102,7 @@ def typing(session):
102102
"""
103103
Check the codebase using pyright by type checking the test suite.
104104
"""
105-
session.install("pyright", ROOT, "-r", REQUIREMENTS["tests"])
105+
session.install("pyright", "-r", REQUIREMENTS["tests"])
106106
session.run("pyright", TESTS)
107107

108108

0 commit comments

Comments
 (0)