Everyone is free to contribute on this project.
There are two ways to contribute:
- Submit an issue.
- Submit a pull request.
Before creating an issue please make sure that it was not already reported.
- You encountered an issue.
- You have a change proposal.
- You have a feature request.
- Go to the Issues tab and click on the New issue button.
- Title should be a small sentence describing the request.
- The comment should contain as much information as possible
- Actual behavior (including the version you used)
- Expected behavior
- Steps to reproduce
- You fixed an issue.
- You changed something.
- You added a new feature.
- Create a new branch based on
develop
branch. - Fetch all dev dependencies.
- Install required python modules using
pip
: python -m pip install .[testing]
- Install required python modules using
- Ensure tests are ok by running them using
pytest
. - Add your changes.
- Follow Black code formatting.
- Install pre-commit python module using
pip
: python -m pip install pre-commit - To add the pre-commit hook, after the installation run: pre-commit install
- Install pre-commit python module using
- Add at least one
pytest
test case.- Unless it is an internal refactoring request or a documentation update.
- Add related changelog entry in the
Unreleased
section.- Unless it is a documentation update.
- Go to the Pull requests tab and click on the New pull request button.
- base should always be set to
develop
and it should be compared to your branch. - Title should be a small sentence describing the request.
- The comment should contain as much information as possible
- Actual behavior (before the new code)
- Expected behavior (with the new code)
- Steps to reproduce (with and without the new code to see the difference)