From ecc3ab5e8f6cd9edf1a1f12c90164c3852a7d1d7 Mon Sep 17 00:00:00 2001 From: Nacho Maiz Date: Fri, 7 Jul 2023 18:21:30 +0100 Subject: [PATCH] Update noxfile.py Fixed command for build not split into separate strings for each word --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)