Plugin for Poetry to enable dynamic versioning based on VCS tags
Project description
Dynamic versioning plugin for Poetry
This package is a plugin for Poetry to enable dynamic versioning based on tags in your version control system, powered by Dunamai.
Since Poetry does not yet officially support plugins (refer to this issue) as of the time of writing on 2019-10-19, this package takes some novel liberties to make the functionality possible. As soon as official support lands, this plugin will be updated to do things the official way.
Installation
Python 3.5 or newer and Poetry 1.0.0 or newer are required.
- Run
pip install poetry-dynamic-versioning
- Add this to your pyproject.toml:
[tool.poetry-dynamic-versioning] enable = true
Note that you must install the plugin in your global Python installation, not as a dependency in pyroject.toml, because the virtual environment that Poetry creates cannot see Poetry itself and therefore cannot patch it.
With the minimal configuration above, the plugin will automatically take effect
when you run commands such as poetry build
. It will update the version in
pyproject.toml, then revert the change when the plugin deactivates. If you want
to include a __version__
variable in your code, just put a placeholder in the
appropriate file and configure the plugin to update it (see below) if it isn't
one of the defaults. You are encouraged to use __version__ = "0.0.0"
as a
standard placeholder.
Configuration
In your pyproject.toml file, you may configure the following options:
[tool.poetry-dynamic-versioning]
: General options.-
enable
: Boolean. Default: false. Since the plugin has to be installed globally, this setting is an opt-in per project. This setting will likely be removed once plugins are officially supported. -
vcs
: String. This is the version control system to check for a version. One of:any
(default),git
,mercurial
,darcs
,bazaar
,subversion
,fossil
. -
metadata
: Boolean. Default: unset. If true, include the commit hash in the version, and also include a dirty flag ifdirty
is true. If unset, metadata will only be included if you are on a commit without a version tag. -
dirty
: Boolean. Default: false. If true, include a dirty flag in the metadata, indicating whether there are any uncommitted changes. -
pattern
: String. This is a regular expression which will be used to find a tag representing a version. There must be a named capture groupbase
with the main part of the version, and optionally you can also have groups namedstage
andrevision
for prereleases. The default is^v(?P<base>\d+\.\d+\.\d+)(-?((?P<stage>[a-zA-Z]+)\.?(?P<revision>\d+)?))?$
. -
format
: String. Default: unset. This defines a custom output format for the version. Available substitutions:{base}
{stage}
{revision}
{distance}
{commit}
{dirty}
Example:
v{base}+{distance}.{commit}
-
format-jinja
: String. Default: unset. This defines a custom output format for the version, using a Jinja template. When this is set,format
is ignored.Available variables:
base
(string)stage
(string or None)revision
(integer or None)distance
(integer)commit
(string)dirty
(boolean)env
(dictionary of environment variables)
Available functions:
bump_version
(from Dunamai)serialize_pep440
(from Dunamai)serialize_semver
(from Dunamai)serialize_pvp
(from Dunamai)
Simple example:
format-jinja = "{% if distance == 0 %}{{ base }}{% else %}{{ base }}+{{ distance }}.{{ commit }}{% endif %}"
Complex example:
format-jinja = """ {%- if distance == 0 -%} {{ serialize_pep440(base, stage, revision) }} {%- elif revision is not none -%} {{ serialize_pep440(base, stage, revision + 1, dev=distance, metadata=[commit]) }} {%- else -%} {{ serialize_pep440(bump_version(base), stage, revision, dev=distance, metadata=[commit]) }} {%- endif -%} """
-
style
: String. Default: unset. One of:pep440
,semver
,pvp
. These are preconfigured output formats. If you set both astyle
and aformat
, then the format will be validated against the style's rules. Ifstyle
is unset, the default output format will follow PEP 440, but a customformat
will only be validated ifstyle
is set explicitly. -
latest-tag
: Boolean. Default: false. If true, then only check the latest tag for a version, rather than looking through all the tags until a suitable one is found to match thepattern
.
-
[tool.poetry-dynamic-versioning.subversion]
: Options specific to Subversion.tag-dir
: String. Default:tags
. This is the location of tags relative to the root.
[tool.poetry-dynamic-versioning.substitution]
: Insert the dynamic version into additional files other than just pyproject.toml. These changes will be reverted when the plugin deactivates.files
: List of globs for any files that need substitutions. Default:["*.py", "*/__init__.py", "*/__version__.py", "*/_version.py"]
. To disable substitution, set this to an empty list.patterns
: List of regular expressions for the text to replace. Each regular expression must have two capture groups, which are any text to preserve before and after the replaced text. Default:["(^__version__\s*=\s*['\"])[^'\"]*(['\"])"]
.
Simple example:
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
Command line mode
The plugin also has a command line mode for execution on demand.
This mode applies the dynamic version to all relevant files and leaves
the changes in-place, allowing you to inspect the result.
Your configuration will be detected from pyproject.toml as normal,
but the enable
option is not necessary.
To activate this mode, run the poetry-dynamic-versioning
command
in your console.
Caveats
- The dynamic version is not available during
poetry run
because Poetry usesos.execvp()
.
Implementation
In order to side-load plugin functionality into Poetry, this package does the following:
- Upon installation, it delivers a
zzz_poetry_dynamic_versioning.pth
file to your Python site-packages directory. This forces Python to automatically load the plugin after all other modules have been loaded (or at least those alphabetically prior tozzz
). - It patches
builtins.__import__
so that, whenever the first import from Poetry finishes,poetry.console.main
will be patched. The reason we have to wait for a Poetry import is in case you've used the get-poetry.py script, in which case there is a gap between when Python is fully loaded and when~/.poetry/bin/poetry
adds the Poetry lib folder to the PYTHONPATH. - The patched version of
poetry.console.main
will then, when called, additionally patch eitherpoetry.poetry.Poetry.create()
orpoetry.factory.Factory.create_poetry()
(depending on your Poetry version) to replace the version from your pyproject.toml file with the dynamically generated version.
Development
Please refer to CONTRIBUTING.md.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for poetry-dynamic-versioning-0.7.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c060bb9fdeece117b4188e57487127c86e39f5cecb188b336b9a5505f33bfb89 |
|
MD5 | 9d4435f761370bcd7d08b542f008bfa5 |
|
BLAKE2b-256 | a86d88c87a76eac82d140053b8104df6d2f35b6d0e4bad0eda6e0e35a189627d |
Hashes for poetry_dynamic_versioning-0.7.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b838f6e4d52e318a823616ee282bc936993c647c4c19b4829403fdff569560e1 |
|
MD5 | 59df48b6a53065b8d0a412d93b867708 |
|
BLAKE2b-256 | a8aca1f349856300a277d5e3d3e0d7b8b36704a3a35ed2c7769bcd09b9b33071 |