Skip to content

Commit 60bcd4c

Browse files
committed
Update justfile for windows.
1 parent 9987955 commit 60bcd4c

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

justfile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
1-
export PROCESSING_ASSET_ROOT := `realpath ./assets`
1+
set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
2+
3+
export PROCESSING_ASSET_ROOT := canonicalize("./assets")
24

35
default:
46
@just --list
57

68
py-build:
7-
cd crates/processing_pyo3 && uv run maturin develop
9+
cd crates/processing_pyo3 && uv run maturin develop --release
810

911
py-run file: py-build
1012
cd crates/processing_pyo3 && uv run python ./examples/{{file}}
1113

14+
py-jupyter file: py-build
15+
cd crates/processing_pyo3 && uv run jupyter notebook ./examples/{{file}}
16+
17+
py-ipython: py-build
18+
cd crates/processing_pyo3 && ipython
19+
1220
wasm-build:
1321
wasm-pack build crates/processing_wasm --target web --out-dir ../../target/wasm
1422

0 commit comments

Comments
 (0)