Skip to content

Commit 6049450

Browse files
committed
DEV: Fix how we install dependency groups for nox session 'dev'
1 parent 4924a28 commit 6049450

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def dev(session: nox.Session) -> None:
4848
# Use the venv's interpreter to install the project along with
4949
# all it's dev dependencies, this ensures it's installed in the right way
5050
pyproject = nox.project.load_toml("pyproject.toml")
51-
session.install(*nox.project.dependency_groups(pyproject, "dev"))
51+
session.run(python, "-m", "pip", "install", *nox.project.dependency_groups(pyproject, "dev"), external=True)
5252
session.run(python, "-m", "pip", "install", "-e", ".", external=True)
5353

5454

0 commit comments

Comments
 (0)