diff --git a/noxfile.py b/noxfile.py index 80d37b8..d116205 100644 --- a/noxfile.py +++ b/noxfile.py @@ -189,7 +189,7 @@ def build(session: nox.Session) -> None: """Build package wheel and source distribution into dist folder.""" session.install("build") - session.run("python -m build") + session.run("python", "-m", "build") @nox.session(python=None)