We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77499df commit 94a1981Copy full SHA for 94a1981
1 file changed
justfile
@@ -6,16 +6,16 @@ default:
6
@just --list
7
8
py-build:
9
- cd crates/processing_pyo3 && uv run maturin develop --release
+ cd crates/processing_pyo3; uv run maturin develop --release
10
11
py-run file: py-build
12
- cd crates/processing_pyo3 && uv run python ./examples/{{file}}
+ cd crates/processing_pyo3; uv run python ./examples/{{file}}
13
14
py-jupyter file: py-build
15
- cd crates/processing_pyo3 && uv run jupyter notebook ./examples/{{file}}
+ cd crates/processing_pyo3; uv run jupyter notebook ./examples/{{file}}
16
17
py-ipython: py-build
18
- cd crates/processing_pyo3 && ipython
+ cd crates/processing_pyo3; ipython
19
20
wasm-build:
21
wasm-pack build crates/processing_wasm --target web --out-dir ../../target/wasm
0 commit comments