Skip to content

Commit

Permalink
Add missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-r-santos committed Dec 21, 2024
1 parent 48c5ee1 commit 9c49323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pixi_kernel/pixi.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async def ensure_readiness(
raise RuntimeError(PIXI_NOT_FOUND.format(kernel_name=kernel_name))

# Ensure a supported Pixi version is installed
process, stdout, stderr = await subprocess_exec("pixi", "--version")
process, stdout, stderr = await subprocess_exec("pixi", "--version", env=env)
if process.returncode != 0 or not stdout.startswith("pixi "):
raise RuntimeError(PIXI_VERSION_ERROR.format(kernel_name=kernel_name))

Expand Down

0 comments on commit 9c49323

Please sign in to comment.