Skip to content

Commit

Permalink
Fix pixi build_project
Browse files Browse the repository at this point in the history
  • Loading branch information
JafarAbdi committed Feb 5, 2024
1 parent 5e85d98 commit ada94c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/.local/bin/build_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def python(
cmd.extend(["micromamba", "run", "-n", micromamba_env])
python_path = "python3"
if (pixi_prefix := find_rootdir(".pixi")(file)) is not None:
python_path = pixi_prefix / ".pixi" / "env" / "bin" / "python"
python_path = pixi_prefix / ".pixi" / "envs" / "default" / "bin" / "python"
if is_test:
if not file.name.startswith("test_") and not file.name.endswith("_test.py"):
logging.error(
Expand Down

0 comments on commit ada94c6

Please sign in to comment.