Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 475 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (21 loc) · 475 Bytes

How to contribute

Development

Install the project dependencies:

python3 -m pip install -e '.[dev]'
pre-commit install

Run the tests:

python3 -m pytest

Publishing

  1. Update the CHANGELOG with description of changes

  2. Update the version number in pyproject.toml

  3. Push the changes to the main branch

  4. Publish to PyPi:

    export FLIT_USERNAME=__token__
    export FLIT_PASSWORD=<your-pypi-token>
    flit publish