Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.

Latest commit

 

History

History
45 lines (36 loc) · 1.63 KB

File metadata and controls

45 lines (36 loc) · 1.63 KB

Contributing to Kibble

Community

The main development and design discussion happens on our mailing lists. We have a list specifically for development, and one for future user questions and feedback.

To join in the discussion on the design and roadmap, you can send an email to dev@kibble.apache.org.
You can subscribe to the list by sending an email to dev-subscribe@kibble.apache.org.
You can also browse the archives online at lists.apache.org.

We also have:

Development installation

This project requires Python in higher version than 3.4. More information will come soon!

Code Quality

Apache Kibble project is using pre-commits to ensure the quality of the code. We encourage you to use pre-commits, but it's not required in order to contribute. Every change is checked on CI and if it does not pass the tests it cannot be accepted. If you want to check locally then you should install Python3.6 or newer together and run:

pip install pre-commit
# or
brew install pre-commit

For more installation options visit the pre-commits.

To turn on pre-commit checks for commit operations in git, run:

pre-commit install

To run all checks on your staged files, run:

pre-commit run

To run all checks on all files, run:

pre-commit run --all-files