We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
We use github to host code, to track issues and feature requests, as well as accept pull requests.
We Use Github Flow, So All Code Changes Happen Through Pull Requests
Pull requests are the best way to propose changes to the codebase (we use Github Flow). 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.
- Issue that pull request!
- For any new feature, make sure to write your unit tests first.
- Try to follow PEP8, but you may ignore the line length limit if following it would make the code uglier.
- Make sure your tests are passing before pushing
- We use nose for the test runner. If you create a new test file, make sure nose can find it by opening
nose.cfg
and adding the filepath to the second line (tests=...
)