Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ default:

# Install development dependencies
install:
uv venv --quiet || true
uv pip install -e ".[dev]"

# Run acceptance tests
Expand Down Expand Up @@ -36,4 +37,8 @@ publish: build
publish-test: build
uv pip install twine
twine check dist/*
twine upload --repository testpypi --config-file ~/.pypirc dist/*
twine upload --repository testpypi --config-file ~/.pypirc dist/*

# Launch Jupyter notebook for interactive development
notebook:
uv run jupyter notebook