Skip to main content

Package version query toolkit for Python

Project description

package version from PyPI build status from Travis CI build status from AppVeyor grade from Codacy test coverage from Coveralls license

This script is motivated by wish to avoid hardcoding the version number when maintaining a Python package.

Instead of hardcoding:

__version__ = '1.5.0.dev2'

You can instead:

from version_query import generate_version_str

__version__ = generate_version_str()

how does it work

At development time, this will automatically infer the current version number based on:

  • tags

  • current commit SHA

  • index status

in your git repository. Therefore the package can be built and shipped to PyPI based only on status of the git repository.

If there is no git repository (this might be the case at installation time or at runtime) the script relies on package metadata from its PKG-INFO file.

PKG-INFO is a file that is automatically-generated when building a package and it is packaged into source as well as binary distributions. It should be present for every Python 3 package.

how version is determined from git repository

First of all, a most recent (based on commit tree) version tag is found. Version tag is a git tag that starts with v or ver, followed by a valid version identifier.

Examples of valid version tags:

  • v1.0

  • v0.16.0

  • v1.0.dev3

The validity of the version identifier is determined by PEP 440.

If there are no version tags in the repo, the script simply assumes that initial commit has tag v0.0.0, and proceeds.

how version is incremented for a git repository

If current commit is not the one with the latest version tag, a suffix .dev# is appended to the version identifier, where # is the distance (number of commits) between the current commit and the latest version tag.

Additionally, the release number is incremented by 1. Release number here is defined as in major.minor.release, e.g. for version 1.2.3 release number is 3 and it would be assumed equal to 0 if not present.

Additionally, a plus (+) character and the first 8 characters of SHA of the latest commit are appended to version identifier, e.g. +a3014fe0.

Additionally, if there are any uncommitted changes in the repository (i.e. the repo is dirty), the suffix .dirty followed by current date and time in format YYYYMMDDhhmmss are appended to the identifier.

Example of how the final version identifier looks like, depending on various conditions of the repository:

  • Most recent version tag is v0.4.5, there were 2 commits since, latest having SHA starting with 812f12ea. Version identifier will be 0.4.6.dev2+812f12ea.

  • Most recent version tag is ver6.0, and there was 1 commit since having SHA starting with e10ac365. Version identifier will be 6.0.1.dev1+e10ac365.

  • Most recent version tag is v9, there were 40 commit since, latest having SHA starting with 1ad22355, the repository has uncommitted changes and version was queried at 19:52.20, 8th June 2017. the result is 9.0.1.dev40+1ad22355.dirty20170608195220.

how version is determined from PKG-INFO file

The version identifier is simply read from the package metadata file (i.e. the file named PKG-INFO) which should be present for any:

  • installed package

  • source distribution

  • binary distribution

  • source code folder of any package using setuptools, in which setup.py <build> was executed

limitations

Either git repository or PKG-INFO file must be present for the script to work.

The current implementation aims at, but is not yet fully compatible with:

Especially, in current implementation at most one of: alpha a / beta b / release candidate rc / development dev suffixes can be used in a version identifier.

And the format in which alpha a, beta b and release candidate rc suffixes are to be used does not match exactly the conditions defined in PEP.

requirements

Python version >= 3.4.

Python libraries as specified in requirements.txt.

Building and running tests additionally requires packages listed in dev_requirements.txt.

Tested on Linux, OS X and Windows.

Project details


Download files

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

Source Distribution

version-query-0.0.1.dev3.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

version_query-0.0.1.dev3-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file version-query-0.0.1.dev3.tar.gz.

File metadata

File hashes

Hashes for version-query-0.0.1.dev3.tar.gz
Algorithm Hash digest
SHA256 617b5133323dca272c686d5df01ea4ab249caeb3037a1b9c7c7c8b39b90d2f8c
MD5 68c397a69aef765aae652b57d5fa631a
BLAKE2b-256 ad1b6383e44a9a48341b5c359cb5a1047acb960b44e18a16968f5901ff5cd6ea

See more details on using hashes here.

File details

Details for the file version_query-0.0.1.dev3-py3-none-any.whl.

File metadata

File hashes

Hashes for version_query-0.0.1.dev3-py3-none-any.whl
Algorithm Hash digest
SHA256 cf8ad8f5c49edbfe6da1dc0ba1aa2f4b3f471e877f5376fc6beb41fa9bec71fa
MD5 b1f06a2e62d2e50fcf1bdc1b74fad165
BLAKE2b-256 67c419dbfb46d9f8d68b56c97ca6528c2f75c06ce34f022e1a7e5c918597454b

See more details on using hashes here.

Supported by

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