Skip to content

Commit

Permalink
Update noxfile.py
Browse files Browse the repository at this point in the history
Fixed command for build not split into separate strings for each word
  • Loading branch information
Nacho Maiz authored Jul 7, 2023
1 parent 80cd669 commit ecc3ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ecc3ab5

Please sign in to comment.