Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 433 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (17 loc) · 433 Bytes

Setup development environment

.. code:: bash

git clone <converge-repo-url>
cd converge

python -m venv .venv
source ./.venv/bin/activate

Running tests

.. code:: bash

pip install pytest
pytest tests.py

Build / Release

python setup.py build sdist
bumpversion --dry-run --verbose patch  # or major, minor
bumpversion run patch  # or major, minor
twine upload dist/* --repository converge