Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 423 Bytes

File metadata and controls

25 lines (19 loc) · 423 Bytes

Contributing

Development setup

python -m venv .venv
. .venv/bin/activate
pip install -e ".[dev]"

Local quality checks

ruff check src tests
mypy src
pytest -q
python -m build
python -m twine check dist/*

Pull requests

  • Keep changes focused and include tests for behavior changes.
  • Update README.md when user-visible behavior changes.
  • Ensure CI passes before requesting review.