Skip to main content

Poetry plugin to get package version from git

Project description

Poetry Git Version Plugin

Poetry plugin to set package version based on git tag.

PyPI PyPI - Python Version

Coverage Quality Gate Status

Downloads GitLab stars GitLab last commit

Features

  • No needed installed Git
  • Git tag parsing
  • Different types of release
  • Setting found or generated version as package poetry.version
  • Maintenance of PEP 440
  • Auto-increment depending on release type
  • Command to output a new version
  • Command to update the pyproject version

Quick start

poetry self add poetry-git-version-plugin
poetry git-version # Write package version based on git tag
poetry build # Build package with version based on git tag

Configs

release_type

Determines which release type to use.

  • type: Enum
    • tag
    • alpha
    • beta
    • rc
    • post
    • dev
  • Default = "dev"

Value definition:

# Environment
export PACKAGE_VERSION_RELEASE_TYPE=dev
# pyproject.toml
[tool.poetry-git-version-plugin]
release_type = "dev"

Values:

Given: current tag - 1.2.3, distance - 4.

Possible values ​​and version result:

  • tag -> 1.2.1
  • alpha -> 1.2.1a4
  • beta -> 1.2.1b4
  • rc -> 1.2.1rc4
  • post -> 1.2.3.post4
  • dev -> 1.2.3.dev4

local

Determines whether to add locale to the version

  • type: bool
  • Default = true

Value definition:

# Environment
export PACKAGE_VERSION_LOCAL=true
# pyproject.toml
[tool.poetry-git-version-plugin]
local = true

Values:

Given: current tag - 1.2.3, distance - 4, hash - 09dc5d2d7d8132c94c9c77ac27e1f594963a8ed4.

Possible values ​​and version result:

  • false -> 1.2.1a4
  • true -> 1.2.1a4+09dc5d2

Commands

poetry git-version

$ poetry git-version # Write package version based on git tag
1.2.3.dev4+09dc5d2

poetry set-git-version

$ poetry git-version # Set new version in pyproject 
The new version has been installed: 1.2.3.dev4+09dc5d2

$ cat pyproject.toml | grep version
version = "1.2.3.dev4+09dc5d2"

Use cases

Publishing python package to pypi via poetry with version equal to git tag

.gitlab-ci.yml:

pypi:
  stage: publishing
  image: python:3.10
  tags:
    - docker
  script:
    - export PACKAGE_VERSION_RELEASE_TYPE=alpha
    - poetry self add poetry-git-version-plugin
    - poetry config repositories.pypi https://upload.pypi.org/legacy/
    - poetry config pypi-token.pypi ${PYPI_TOKEN}
    - poetry publish -r pypi --build
  rules:
    - if: $CI_COMMIT_TAG
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
  • When creating a git tag: new package with version == {TAG}
  • When pushing to CI_DEFAULT_BRANCH: new package with version == {TAG}a{N}

Publishing python package to private pypi via poetry with version equal to git tag and commit hash

.gitlab-ci.yml:

pypi:
  stage: publishing
  image: python:3.10
  tags:
    - docker
  script:
    - export PACKAGE_VERSION_RELEASE_TYPE=alpha
    - export PACKAGE_VERSION_local=true
    - poetry self add poetry-git-version-plugin
    - poetry config repositories.gitlab "https://gitlab.com/api/v4/projects/$CI_PROJECT_ID/packages/pypi"
    - poetry config http-basic.gitlab gitlab-ci-token "$CI_JOB_TOKEN"
    - poetry publish -r gitlab --build
  rules:
    - if: $CI_COMMIT_TAG
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
  • When creating a git tag: new package with version == {TAG}
  • When pushing to CI_DEFAULT_BRANCH: new package with version == {TAG}a{N}+{COMMIT_HASH}

Contribute

Issue Tracker: https://gitlab.com/rocshers/python/poetry-git-version-plugin/-/issues
Source Code: https://gitlab.com/rocshers/python/poetry-git-version-plugin

Before adding changes:

make install-dev

After changes:

make format test

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

poetry_git_version_plugin-2.0.0.post1.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file poetry_git_version_plugin-2.0.0.post1.tar.gz.

File metadata

File hashes

Hashes for poetry_git_version_plugin-2.0.0.post1.tar.gz
Algorithm Hash digest
SHA256 eae0a039e6ad1d5a2b1af3a35e39c8d073b6d55a4b26001c4c55a417f18bd86e
MD5 0b70dfec857f6ce56df88c25a9b7083b
BLAKE2b-256 c30ffd96d4a0d5c09cb5ee2bb4304a7f1d27ff14dcff8db813fb9e6e66be667f

See more details on using hashes here.

File details

Details for the file poetry_git_version_plugin-2.0.0.post1-py3-none-any.whl.

File metadata

File hashes

Hashes for poetry_git_version_plugin-2.0.0.post1-py3-none-any.whl
Algorithm Hash digest
SHA256 f92eeafb115e28d8f7de7ab8a7c246d47e07bf06648b9b62f2c3b07ac3ad53af
MD5 ee879816174860f0504015878054421d
BLAKE2b-256 2dafccd442add695eeba4209712e95fa1c08b9a0269ac6c6aa18a94dd91b93d1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page