Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Report bugs at https://github.com/pik-primap/unfccc_di_api/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.
UNFCCC DI API could always use more documentation, whether as part of the official UNFCCC DI API 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://github.com/pik-primap/unfccc_di_api/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 contributions are welcome :)
Ready to contribute? Here's how to set up unfccc_di_api for local development.
Fork the unfccc_di_api repo on GitHub.
Clone your fork locally:
$ git clone [email protected]:your_name_here/unfccc_di_api.git
Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
$ cd unfccc_di_api/ $ make virtual-environment $ make install-pre-commit
Create a branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
When you're done making changes, check that your changes pass our tests and automatically format everything according to our rules:
$ make lint Often, the linters can fix errors themselves, so if you get failures, run ``make lint`` again to see if any errors need human intervention.
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website.
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst.
- The pull request should work for Python 3.9, 3.10, 3.11, and 3.12.
A reminder for the maintainers on how to deploy.
- Commit all your changes.
- Replace the unreleased entry in CHANGELOG.rst with your target version number.
- Run
tbump X.Y.Z
. - Go to github and make a release from the tag. Use "Version x.y.z" as the release title, and the changelog entries as the release description. Creating the github release will automatically trigger a release on zenodo.
- Run
make update-citation
to update the citation information in the README. - Upload the release to pyPI:
make release
- To prepare for future development, add a new "unreleased" section to CHANGELOG.rst, and commit the result.