Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.86 KB

File metadata and controls

18 lines (12 loc) · 1.86 KB

Thank you for taking the time to consider making a contribution to the Pyfive package!

General Guidelines

We greatly value contributions of any kind. Contributions could include, but are not limited to documentation improvements, bug reports, new or improved code, code reviews, infrastructure improvements, outreach improvements, and community help/building. We value the time you invest in contributing and strive to make the process as easy as possible. If you have suggestions for improving the process of contributing, please do not hesitate to propose them. Here is a minimal list of guidelines for contributing to Pyfive:

Design considerations

Please keep the following considerations in mind when programming:

  • changes should preferably be backward compatible.
  • apply changes gradually and change no more than a few files in a single pull request (PR), but do make sure every pull request in itself brings a meaningful improvement. This reduces the risk of breaking existing functionality and making backward incompatible changes, because it helps you as well as the reviewers of your pull request to better understand what exactly is being changed;
  • Pyfive has very few direct dependencies (currently just Python and Numpy) - when you suggest new functionality, please bear this in mind: a brand new functionality should not require more than a few extra dependencies;
  • Pyfive's main scope is to interact with the external software ecosystem as a pure-Python HDF5, and extra functionality should not depart too far from this concept;