Contributions are welcome through issues, discussions, and pull requests.
python3 -m pip install -U -e ".[test]"
python3 -m pip install -U pre-commit
pre-commit installpytest
pre-commit run --all-filesThe pre-commit hooks include ruff and pyright (pinned to the same version CI uses), so a clean
local run means a clean CI run. The pyright hook resolves imports from your .venv, so make sure
the editable install above ran inside it.
- Keep changes focused and include tests when behavior changes.
- The codebase is pyright-clean (
standardmode, Python 3.9 target) and CI enforces it. Prefer real fixes (honest annotations, explicit narrowing) over suppressions; when a suppression is unavoidable (inherently dynamic APIs), use a rule-specific# pyright: ignore[ruleName], never a blanket# type: ignore.
- Discord: https://discord.gg/52mZGC3JXJ