From 0b0a8e3aa657c8572f0b63fa43bedf3923680f4d Mon Sep 17 00:00:00 2001 From: oliverlaslett <11660098+owlas@users.noreply.github.com> Date: Mon, 26 Jan 2026 11:00:28 +0000 Subject: [PATCH] chore: add notebook command to justfile --- justfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 88c5859..6cb3eee 100644 --- a/justfile +++ b/justfile @@ -4,6 +4,7 @@ default: # Install development dependencies install: + uv venv --quiet || true uv pip install -e ".[dev]" # Run acceptance tests @@ -36,4 +37,8 @@ publish: build publish-test: build uv pip install twine twine check dist/* - twine upload --repository testpypi --config-file ~/.pypirc dist/* \ No newline at end of file + twine upload --repository testpypi --config-file ~/.pypirc dist/* + +# Launch Jupyter notebook for interactive development +notebook: + uv run jupyter notebook \ No newline at end of file