We welcome any kind of contribution to our software, from simple comment or question to a full fledged pull request. Please read and follow our Code of Conduct.
A contribution can be one of the following cases:
- you have a question;
- you think you may have found a bug (including unexpected behavior);
- you want to make some kind of change to the code base (e.g. to fix a bug, to add a new feature, to update documentation);
- you want to make a new release of the code base.
The sections below outline the steps in each case.
You have a question
- use the search functionality in issues to see if someone already filed the same issue;
- if your issue search did not yield any relevant results, make a new issue;
- apply the "Question" label; apply other labels when relevant.
You think you may have found a bug
- use the search functionality in issues to see if someone already filed the same issue;
- if your issue search did not yield any relevant results, make a new issue, making sure to provide enough information to the rest of the community to understand the cause and context of the problem. Depending on the issue, you may want to include:
- the SHA hashcode of the commit that is causing your problem;
- some identifying information (name and version number) for dependencies you're using;
- information about the operating system;
- apply relevant labels to the newly created issue.
You want to make some kind of change to the code base
- (important) announce your plan to the rest of the community before you start working. This announcement should be in the form of a (new) issue;
- (important) wait until some kind of consensus is reached about your idea being a good idea;
- follow the instruction in developer_guide.md.
In case you feel like you've made a valuable contribution, but you don't know how to write or run tests for it, or how to generate the documentation: don't let this discourage you from making the pull request; we can help you! Just go ahead and submit the pull request, but keep in mind that you might be asked to append additional commits to your pull request.
You want to make a new release of the code base
To create a release you need write permission on the repository.
- Check the author list in
CITATION.cff - Bump the version using
bump-my-version bump <major|minor|patch>. The version can be manually changed inpyproject.tomlin the root of the repository. Follow Semantic Versioning principles. Also, update__version__variable insrc/fwot_ml/__init__.pyto the same version. - Go to the GitHub release page. Press draft a new release button. Fill version, title and description field. Press the Publish Release button. For this package, if the zenodo integration is enabled, a new DOI will be created automatically.
- This software automatically publish to PyPI using a release or publish workflow. Wait until PyPi publish workflow has completed and verify new release is on PyPi.