Contribution
Help us improve EcoLogits by contributing!
Issues
Questions, feature requests and bug reports are all welcome as discussions or issues.
When submitting a feature request or bug report, please provide as much detail as possible. For bug reports, please include relevant information about your environment, including the version of EcoLogits and other Python dependencies used in your project.
Pull Requests
Getting started and creating a Pull Request is a straightforward process. Since EcoLogits is regularly updated, you can expect to see your contributions incorporated into the project within a matter of days or weeks.
For non-trivial changes, please create an issue to discuss your proposal before submitting pull request. This ensures we can review and refine your idea before implementation.
Prerequisites
You'll need to meet the following requirements:
- Python version above 3.9
- git
- make
- poetry
- pre-commit
Installation and setup
Fork the repository on GitHub and clone your fork locally.
# Clone your fork and cd into the repo directory
git clone git@github.com:<your username>/ecologits.git
cd ecologits
# Install ecologits development dependencies with poetry
make install
Check out a new branch and make your changes
Create a new branch for your changes.
# Checkout a new branch and make your changes
git checkout -b my-new-feature-branch
# Make your changes and implements tests...
Run tests
Run tests locally to make sure everything is working as expected.
If you have added a new provider you will need to record your tests with VCR.py through pytest-recording.
Once your tests are recorded, please check that the newly created cassette files (located in tests/cassettes/...
) do not contain any sensible information like API tokens. If so you will need to update the configuration accordingly in conftest.py
and run again the command to record tests.
Build documentation
If you've made any changes to the documentation (including changes to function signatures, class definitions, or docstrings that will appear in the API documentation), make sure it builds successfully.
# Build documentation
make docs
# If you have changed the documentation, make sure it builds successfully.
You can also serve the documentation locally.
Code formatting and pre-commit
Before pushing your work, run the pre-commit hook that will check and lint your code.
Commit and push your changes
Commit your changes, push your branch to GitHub, and create a pull request.
Please follow the pull request template and fill in as much information as possible. Link to any relevant issues and include a description of your changes.
When your pull request is ready for review, add a comment with the message "please review" and we'll take a look as soon as we can.
Documentation style
Documentation is written in Markdown and built using Material for MkDocs. API documentation is build from docstrings using mkdocstrings.
Code documentation
When contributing to EcoLogits, please make sure that all code is well documented. The following should be documented using properly formatted docstrings.
We use Google-style docstrings formatted according to PEP 257 guidelines. (See Example Google Style Python Docstrings for further examples.)
Documentation style
Documentation should be written in a clear, concise, and approachable tone, making it easy for readers to understand and follow along. Aim for brevity while still providing complete information.
Code examples are highly encouraged, but should be kept short, simple and self-contained. Ensure that each example is complete, runnable, and can be easily executed by readers.
Acknowledgment
We'd like to acknowledge that this contribution guide is heavily inspired by the excellent guide from Pydantic. Thanks for the inspiration!