This repository provides a development container (or devcontainer).
In the devcontainer, the pertdata package is already installed (see post_create.sh).
The project is configured via pyproject.toml.
The publishing workflow is triggered by pushing a tag that starts with v.
For example:
-
Update the version in
src/pertdata/version.py. Use Semantic Versioning. -
Make a tagged commit:
git add src/pertdata/version.py git commit --message "Your commit message" git tag --annotate vMAJOR.MINOR.PATCH --message "vMAJOR.MINOR.PATCH" git push origin main --tags