Skip to content

Commit d7566b6

Browse files
committed
fix: adjust --outdir to --out-dir in the build_python nox session
1 parent 99ae014 commit d7566b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

{{cookiecutter.project_name}}/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def build_python(session: Session) -> None:
201201
{% if cookiecutter.add_rust_extension == "y" -%}
202202
session.run("maturin", "develop", "--uv")
203203
{% else -%}
204-
session.run("uv", "build", "--sdist", "--wheel", "--outdir", "dist/", external=True)
204+
session.run("uv", "build", "--sdist", "--wheel", "--out-dir", "dist/", external=True)
205205
{% endif -%}
206206

207207
session.log("Built packages in ./dist directory:")

0 commit comments

Comments
 (0)