Skip to content

Commit b8324ce

Browse files
authored
chore: add notebook command to justfile (#13)
1 parent 7032c78 commit b8324ce

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

justfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ default:
44

55
# Install development dependencies
66
install:
7+
uv venv --quiet || true
78
uv pip install -e ".[dev]"
89

910
# Run acceptance tests
@@ -36,4 +37,8 @@ publish: build
3637
publish-test: build
3738
uv pip install twine
3839
twine check dist/*
39-
twine upload --repository testpypi --config-file ~/.pypirc dist/*
40+
twine upload --repository testpypi --config-file ~/.pypirc dist/*
41+
42+
# Launch Jupyter notebook for interactive development
43+
notebook:
44+
uv run jupyter notebook

0 commit comments

Comments
 (0)