Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 465 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (18 loc) · 465 Bytes

Contributing Guide

Getting Started

Setup Python

You'll need Python >= 3.9 installed and pip >= 21.3 to

  • support self resolving dependencies
  • editable installs pyproject.toml
$ python3 -m venv .venv
$ . .venv/bin/activate
$ python -m pip install --quiet --upgrade 'pip>=21.3'
$ python -m pip install --quiet --editable '.[dev]'

Then verify by running the tests

$ pytest -qq
..                                   [100%]