We want to make contributing to this project as easy and transparent as possible.
We actively welcome your pull requests.
- Fork the repo and create your branch from
master
. - If you've added code that should be tested, add tests.
- If you've changed APIs, update the documentation.
- Ensure the test suite passes.
- Make sure your code lints.
- If you haven't already, complete the Contributor License Agreement ("CLA").
- We have adopted squash-and-merge as the policy for incorporating PRs into the master branch. We encourage more smaller/focused PRs rather than big PRs with many independent changes. This also enables faster development by merging PRs into master quickly and reducing the need to rebase due to changes on master.
In order to accept your pull request, we need you to submit a CLA. You only need to do this once to work on any of Facebook's open source projects.
Complete your CLA here: https://code.facebook.com/cla
We use semantic versioning. To prepare a release:
- Update version numbers.
- Update the change log.
- Make sure all tests are passing.
- Create a release tag with change log summary using the github release interface (release tag should follow semantic versioning as described above)
Stable versions are regularly assigned by Habitat core team after rigorous testing.
We use GitHub issues to track public bugs. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue.
We use pytest testing framework and testing data that needs to be downloaded, please make sure that test are passing:
pytest
We use mypy to check Python typing and guard API consistency, please make sure next command doesn't complain prior to submission:
mypy . --ignore-missing-imports
- We follow PEP8 and use typing.
- Use
black
for style enforcement and linting. Install black throughpip install black
.
We also use pre-commit hooks to ensure linting and style enforcement. Install the pre-commit hooks with pip install pre-commit && pre-commit install
.
- Our documentation style is based on Magnum / Corrade and uses a similar build system.
- Documentation of PRs is highly encouraged!
By contributing to habitat-api, you agree that your contributions will be licensed under the LICENSE file in the root directory of this source tree.