Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 2 KB

CONTRIBUTING.md

File metadata and controls

18 lines (14 loc) · 2 KB

Contributing to hickle

Thanks for thinking about contributing to hickle, improvements and bugfixes are most welcome.

The following is a brief set of guidelines (not rules) for contributing:

  • Be nice. Please follow the code of conduct.
  • Squashing bugs. If you find a bug, please open an issue, with some simple steps on how to reproduce it. Try not to make duplicate requests.
  • Feature requests. Feel free to make feature requests, also by opening an issue. Be clear about what it is and why it would be awesome.
  • Pull requests. If you add a cool feature you think would be useful broadly, please issue a pull request with some notes on what it does.
  • Git comments. Try and make these clear, even if concise.
  • Major changes. As quite a few people use this package, we have tried to maintain backwards compatibility as much as possible. As such, please open a discussion before you start your quest, to make sure the changes can be merged without upset.
  • Unit tests. If you add new functionality, please write a unit test (if you're familiar with how to). This should be places in the ./tests directory, and will run with py.test.
  • Travis-CI. When you issue a pull request, Travis-CI will automatically run the unit tests. You can test yourself by running cd tests; coverage run --source=hickle -m py.test.
  • Style. Try and keep your code Py2.7 and Py3 compatible, and roughly follow PEP8 with google style docstrings.
  • Beginners welcome. If you're not yet comfortable with some of the fancier things mentioned above, do your best! Just package up your idea/thought/code and open an issue with some clear details.

That's about it. Happy contributing!