- You need to fork the GitHub repository.
- Create you own branch.
- Be sure to add/update tests and documentation within your patch.
You will need pytest:
$ python -m venv venv
$ . venv/bin/activate
$ python -m pip install -U pip
$ python -m pip install -e '.[test]'Launch the test suit:
$ python -m pytestTo ensure the code quality is correct enough:
$ python -m pip install -e '.[dev]'
$ ./check.shTo build the documentation, simply type:
$ sphinx-build -d docs docs/source docs_out --color -W -bhtml