Ready to contribute? Here's how to set up HL-gaps-pub for local development: :ref:`installation`.
Create a branch for local development
$ git checkout -b name-of-your-bugfix-or-featureNow you can make your changes locally. When you're done making changes, check that your changes pass flake8, the git-hooks and tests, including testing other Python versions with tox.
When making changes, make sure they pass flake8, black and tests.
$ flake8 hl_gaps_pub tests
$ black hl_gaps_pub tests
$ pytest
$ toxflake8, black, pytest and tox are pre-installed in the virtual environment. You can also install and run pre-commit hooks like this:
$ make install-githooks
$ make run-githooksCommit your changes and push your branch to GitLab
$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push origin name-of-your-bugfix-or-featureWhen changing the version number, use bumpversion.
$ bumpversion patch # possible: major / minor / patch
$ git push
$ git push --tagsContributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
Report bugs at https://github.com/sthinius87/HL-gaps-pub/issues.
If you are reporting a bug, please include:
- Your operating system name and version.
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
Look through the GitHub issues for bugs. Anything tagged with "bug" and "help wanted" is open to whoever wants to implement it.
Look through the GitHub issues for features. Anything tagged with "enhancement" and "help wanted" is open to whoever wants to implement it.
HL-gaps-pub could always use more documentation, whether as part of the official docs, in docstrings, or even on the web in blog posts, articles, and such.
The best way to send feedback is to file an issue at https://HL_gaps_pub/ifam418/HL-gaps-pub/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome :)