Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.11 KB

CONTRIBUTING.md

File metadata and controls

34 lines (23 loc) · 1.11 KB

How to Contribute to ogs5py

We are happy about all contributions! 👍

Did you find a bug?

  • Ensure that the bug was not already reported under GitHub issues
  • If the bug wasn't already reported, open a new issue with a clear description of the problem and if possible with a minimal working example.
  • please add the version number to the issue:
import ogs5py
print(ogs5py.__version__)

Do you have suggestions for new features?

Open a new issue with your idea or suggestion and we'd love to discuss about it.

Do you want to enhance ogs5py or fix something?

  • Fork the repo on GitHub.
  • Add yourself to AUTHORS.md (if you want to).
  • We use the black code format, please use the script black --line-length 79 ogs5py/ after you have written your code.
  • Add some tests if possible.
  • Push to your fork and submit a pull request.