Contributing#
Thank you for considering contributing to pysmo. We welcome your contribution! To make the process as seamless as possible, please read through this guide carefully.
What are Contributions?#
Broadly speaking, contributions fall into the following categories:
- Questions: the easiest way to contribute to pysmo is ask for help if something is unclear or you get stuck. Questions provide important feedback that helps us determine what parts of pysmo might need attention, so we are always keen to help. Development of pysmo happens publicly on GitHub, and we kindly request that you ask your questions there too. You may either create a new issue or start a discussion. Please also feel free to answer any questions (including your own, should you figure it out!) to help out other users.
- Bug reports: if something needs fixing in psymo we definitely want to hear about it! Please create a new issue, or add relevant information to an issue if one already exists for the bug you found. Bonus points if you also provide a patch that fixes the bug!
- Enhancements: we reckon that if you are able to use pysmo, you are also able to write code that can become part of pysmo. These can be things such as useful functions, new pysmo types, or a cool example you would like to show off in the pysmo gallery.
Contributing towards making pysmo better does not necessarily mean you need to submit code for inclusion in pysmo. However, if you do want to submit code, we ask that you read the information and follow steps outlined in the remaining sections on this page.
Development Workflow#
As mentioned in the previous chapter, development of pysmo happens on GitHub. Therefore, code submitted via a pull request has a much greater chance to be included in pysmo than e.g. sending a patch to us via email.
Typically you would first fork pysmo and configure git to sync your fork with the upstream repository. Then you create a new feature branch where you add your code:
git checkout -b my_cool_feature
This feature branch is what you will also use to submit a pull request to pysmo when you are finished implementing your changes. Before submitting a pull request, please make sure you did the following:
- Write code that adheres to the PEP 8 style guide.
- Include unit tests with your submission. If you need help with that, feel free to contact us.
- Run a code linter on your code and verify the unit tests all still pass.
Essentially this simply means
make tests
still passes without errors. - In order to keep a clean git history, please rebase the pysmo master branch onto your feature branch, and squash all commits into a single, well documented commit. This avoids having commits such as "fix typo", or "undo changes" finding their way into the git log. Note that this should only be done before submitting the initial pull request.
Once a pull request is submitted the following happens:
- The unit tests are executed automatically in clean Python environments via
GitHub Actions. Please verify all
tests still pass. If the tests pass on your development machine but fail in
the pull request, you may have e.g. forgotten to add a dependency to
pyproject.toml
that you happened to already have installed on your machine. - Similarly, a build of the documentation from the code as it exists in the pull request is also automatically triggered. Please follow the link that appears in the pull request on GitHub and verify the documentation is as expected.
- We will then review your submission, and hopefully be able to include it in pysmo!
What should be included#
A good contribution should contain code that is well written and documented, as well as provide meaningful test cases to ensure consistent and bug-free behaviour.
A lot of the pysmo documentation is generated from the docstrings within the .py
files. In many instances this means that a contribution may consist of only two files:
the code itself and an associated test file.