We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7032c78 commit b8324ceCopy full SHA for b8324ce
1 file changed
justfile
@@ -4,6 +4,7 @@ default:
4
5
# Install development dependencies
6
install:
7
+ uv venv --quiet || true
8
uv pip install -e ".[dev]"
9
10
# Run acceptance tests
@@ -36,4 +37,8 @@ publish: build
36
37
publish-test: build
38
uv pip install twine
39
twine check dist/*
- 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