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:
This project requires Python in higher version than 3.4. More information will come soon!
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-commitFor more installation options visit the pre-commits.
To turn on pre-commit checks for commit operations in git, run:
pre-commit installTo run all checks on your staged files, run:
pre-commit runTo run all checks on all files, run:
pre-commit run --all-files