Contributing
Contributing¶
Get Started¶
- Clone the repository
git clone https://github.com/alexym1/ComplAInce.git
- Create a branch (from the master branch)
git checkout -b branch_name
- Install package
make init
make install-prod
- Making changes, and check your work:
make preco
make unittest
make test-docstrings
- Commit
git add .
git commit -m "your message"
- Push your branch
git push origin branch_name
Create a pull request¶
-
make preco
-
make unittest
-
make bump2version XXXXX
(choices : major / minor / patch) -
Update CHANGELOG.md with new entry
-
Generate the docs using
make docs
-
Create a PR from to master
-
Review the PR and merge it.