A somewhat hacky usage of the Hatch VCS plugin to ensure that the __version__
variable stays up-to-date, even when the project is installed in editable mode.
- Ensure that Hatch VCS is configured in
pyproject.toml
. - Copy the contents of
version.py
and adjust to your project. - Install
hatch-vcs
as a development-only dependency. - Enjoy up-to-date version numbers, even in editable mode.
For consistency's sake, it's good to have a single source of truth for the version number of your project. However, there are at least four common places where the version number commonly appears in modern Python projects:
- The
version
field of the[project]
section ofpyproject.toml
. - The dist-info
METADATA
file from when the project was installed. - The
__version__
variable in the__init__.py
file of the project's main package. - The Git tag of the release commit.
With Hatch VCS, the definitive source of truth is the Git tag. One often still needs a technique to access this version number programmatically. For example, a CLI tool might print its version.
-
# __init__.py from importlib.metadata import version __version__ = version("myproject")
This works well in most cases, and does not require the Hatch VCS plugin. If your project is properly installed, you can even replace
"myproject"
with__package__
.There are two important caveats to this approach.
-
The version number comes from the last time the project was installed. In case you are developing your project in editable mode, the reported version may be outdated unless you remember to reinstall each time the version number changes.
-
Parsing the
METADATA
file can be relatively slow. If performance is crucial and every millisecond of startup time counts (e.g. if one is writing a CLI tool), then this is not an ideal solution.
-
-
If using the Hatch VCS build hook option of the
hatch-vcs
plugin, a_version.py
file will be generated when either building a distribution or installing the project from source.Since
_version.py
is generated dynamically, it should be added to.gitignore
.As with the
importlib.metadata
approach, if the project is installed in editable mode then the_version.py
file will not be updated unless the package is reinstalled (or locally rebuilt). -
This strategy has several requirements:
- The
pyproject.toml
file must be present. (This is usually not a viable option because this file is typically absent when a project is installed from a wheel!) - The
hatch-vcs
plugin must be installed. (This is usually only true in the build environment.) git
must be available, and the tags must be accessible and up-to-date.
This is very fragile, but has the advantage that when it works, the version number is always up-to-date, even for an editable installation.
This method should always be used with a fallback to one of the other two methods to avoid failure when the requirements are not met. For example, a production deployment will typically not have
git
,hatchling
, orhatch-vcs
installed. - The
There are many potential pitfalls to this approach. Please open an issue if you encounter one not covered here, or if the solution is insufficient.
-
Ensure that your clone of the repository has the latest tags. You may need to run
git pull --tags
-
Install
hatch-vcs
in your development environment.If you see this in your production environment, then uninstall
hatchling
. -
This occurs when the
__package__
variable is not set. Always ensure that you invoke your package as a module.Correct:
python -m mypackage.main
Incorrect:
python mypackage/main.py
(The latter should only be used for running scripts that are not part of a package!)
-
This can occur if
git
is not correctly installed. -
ImportError: cannot import name '__version__' from partially initialized module '...' (most likely due to a circular import)
This can occur when importing
__version__
from the top-level__init__.py
file.Instead, import
__version__
fromversion.py
.For example, the following is a classical circular import:
# __init__.py import myproject.initialize from myproject.version import __version__
# initialize.py from myproject import __version__ print(f"{__version__=}")
while the following is not:
# __init__.py import myproject.initialize from myproject.version import __version__
# initialize.py from myproject.version import __version__ # Always import from version.py! print(f"{__version__=}")
-
Ensure that the project is properly installed, e.g. by running
pip install -editable .
. -
For end-of-life versions of Python below 3.8, the
importlib.metadata
module is not available. In this case, you need to install theimportlib-metadata
backport and fall back toimportlib_metadata
in place ofimportlib.metadata
.
In most cases, using importlib.metadata.version
is the best solution. However, this data can become outdated during development with an editable install. If reporting the correct version during development is important, then the hybrid approach implemented in version.py
may be desirable:
- Default to using
hatch-vcs
to compute the version number at runtime. - Fall back to using
importlib.metadata.version
ifhatchling
is not installed.
This hybrid approach is somewhat of a footgun: it involves distinct version detection mechanisms between development and deployment. Ideally you should always remember to reinstall the package whenever checking out a new commit so that you can simply use the standard importlib.metadata.version
mechanism. In constrast, the hybrid approach is unsupported, so it must be used at your own risk.
After cloning this repository,
python -m hatch_vcs_footgun_example.main # PackageNotFoundError because it's not installed
pip install --editable .
python -m hatch_vcs_footgun_example.main # Prints "My version is '1.0.3'."
Without hatch-vcs
installed, the version number is reported incorrectly after a new tag.
git commit --allow-empty -m "For v1.2.3"
git tag v1.2.3
python -m hatch_vcs_footgun_example.main # My version is '1.0.3'.
With hatch-vcs
installed the version is correctly reported:
pip install hatch-vcs
python -m hatch_vcs_footgun_example.main # My version is '1.2.3'.