chuchichaestli
is a collection of model architectures and other useful bits of code in use at the Intelligent Vision Systems group at the University of Applied Sciences Zurich (ZHAW).
Tagged releases are available as PyPI packages. To install the latest package, run:
pip install chuchichaestli
For the bleeding-edge package directly from the git main, clone the repository and run the following command in the root directory of the repository:
pip install -e .
Alternatively, you can install the package directly from GitHub:
pip install git+https://github.com/CAIIVS/chuchichaestli.git
On the current version of the main branch, do the follwing.
-
Create an empty commit:
git commit --allow-empty -m "<Your commit message here>"
-
Add a tag to the empty commit:
git tag -a <tag_name> -m "Tagging empty commit"
Replace
<tag_name>
with the new version The-a
option creates an annotated tag, and the-m
option allows you to add a message to the tag. -
Push the empty commit and tag:
git push --tags
This triggers a GitHub action that creates a PR for you to accept. Accepting the PR updates the version and triggers the release pipeline.