This project welcomes all contributors. This short guide (based loosely on Collective Code Construction Contract and matplotlib's development workflow) details how to contribute in a standardized and efficient manner.
- Ensure that you've opened an Issue on GitHub and consensus around the
solution has been reached.
- Minor changes (e.g., grammatical fixes) do not require an Issue first.
- Make a new branch for each separable set of changes—"one task, one branch.".
- Each commit should make one change
to aid reviewing and (in the worst case) simplify reverting it in the future.
- A patch commit message should consist of a single short (less than 50 character) sentence summarizing the change, optionally followed by a blank line and then a more thorough description.
- Where applicable, a PR or commit message body should reference an Issue by
number (e.g.
Fixes #33
).
- If possible, avoid merging upstream branches or any other branches into your
feature branch while you are working.
- If you do find yourself merging from upstream, consider Rebasing on upstream.
- Submit a Pull Request from your feature branch against upstream.
- Use the Draft PR feature on GitHub or title your PR with
WIP
if your PR is not ready for a complete review immediately upon submission.
- Use the Draft PR feature on GitHub or title your PR with
- Ask on the Exaworks Slack if you get stuck.
- PR reviews should be timely. Both reviewer and PR issuer should make a good attempt at resolving the conversation as quickly as possible.
- PR reviews exist to check that obvious things aren't missed, not to achieve perfection.
- A PR is eligible for merging if it has at least one approval from a project maintainer, no outstanding requested changes or discussions, and passes CI tests (if configured for the repository).
- Discussions created via an inline comment on GitHub should only be "resolved" by whomever opened the discussion.
- The person to mark the last open discussion "resolved" should also merge the PR ("close the door when you leave"), unless a merge bot is configured for the repository, in which case the PR should be left for the bot to merge.
- Maintainers should not merge their own patches except in exceptional cases.
All code should conform to PEP8.
This compliance can be checked with make stylecheck
or make checks
and
be automatically achieved by running make style
, which runs autopep8
under-the-hood. PEP8 compliance is also verified as part of the CI by flake8
.
As much Python code in this repo as is feasible should include type annotations.
These type annotations can then be ingested and checked by mypy
, which can be
run with make typecheck
and make checks
.
As many public Python interfaces in this repo as is feasible should
include docstring documentation. All docstrings should follow the
numpy format. These
docstrings are automatically parsed by Sphinx and turned into html-based
documentation hosted on readthedocs. Document generation can be run locally
with make docs
. For more details about building the documentation, please
see README-dev
.