Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 855 Bytes

File metadata and controls

25 lines (16 loc) · 855 Bytes

Contributing

Development

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.

Distribution

The publishing workflow is triggered by pushing a tag that starts with v.

For example:

  1. Update the version in src/pertdata/version.py. Use Semantic Versioning.

  2. 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