Skip to main content

Package version query toolkit for Python

Project description

build status from Travis CI build status from AppVeyor test coverage from Coveralls

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.

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

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

version_query-0.0.1.dev1-py3-none-any.whl (10.9 kB view hashes)

Uploaded Python 3

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