Easy date-based versioning for Python projects
Project description
buildsys-dateversion
Easy date-based versioning for Python projects.
Overview
buildsys-dateversion
is a Python build system extension to automatically
set a version string based on the current date/time as a project builds.
Once enabled, your project's version number while building a source distribution
or wheel will be automatically generated.
At minimum, the version string will contain the current year & month. If the generated version would clash with a version already released to PyPI, additional date/time portions are added to the string (i.e. day, hour, minute) until the clash is resolved.
buildsys-dateversion
is a PEP 517
compliant build system and can be used with other PEP 517 implementations,
such as setuptools
and flit
.
Here's an example of a sequence of version strings which may result
from using buildsys-dateversion
for a project:
Release is made at... | Version string |
---|---|
2025-03-25 12:00 | 2025.3 |
2025-03-31 12:00 | 2025.3.31 |
2025-03-31 13:00 | 2025.3.31.13 |
2025-03-31 14:00 | 2025.3.31.14 |
2025-03-31 14:30 | 2025.3.31.14.30 |
2025-03-31 17:30 | 2025.3.31.17 |
2025-04-02 12:00 | 2025.4 |
Usage
Prerequisites
Your project must use pyproject.toml.
Your project's sources must contain a .py
file with a line of the form:
__version__ = "0"
(The specific value for __version__
does not matter, as it will be
overwritten during build, but "0"
is recommended.)
Installation (setuptools)
Your pyproject.toml
should look like this:
[project]
name = "myproject"
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "myproject.__version__"}
[build-system]
requires = ["buildsys-dateversion"]
build-backend = "buildsys_dateversion"
(Note that buildsys-dateversion
uses
pip-compatible build-system defaults;
this is the reason why it is not necessary to explicitly configure
setuptools
as a build backend or to list it in requires
, as
is necessary in the flit example below.)
Installation (flit)
Your pyproject.toml
should look like this:
[project]
name = "myproject"
dynamic = ["version", "description"]
[build-system]
requires = ["buildsys-dateversion", "flit_core >=3.2,<4"]
build-backend = "buildsys_dateversion"
[tool.buildsys-dateversion]
# buildsys-dateversion only handles generating the version number.
# This tells it which build backend should be used for all the
# other build steps.
build-backend = "flit_core.buildapi"
Installation (other)
buildsys-dateversion
is theoretically compatible with other
PEP 517 build backends (though only setuptools and flit are tested).
The primary requirement is that the build backend must support
a dynamic version
based on a __version__
attr in the project,
as both setuptools and flit do.
[project]
name = "myproject"
# The chosen PEP 517 backend must support a dynamic version.
dynamic = ["version"]
[build-system]
# Require buildsys-dateversion + the build backend.
requires = ["buildsys-dateversion", "some_build_backend"]
build-backend = "buildsys_dateversion"
[tool.buildsys-dateversion]
# This should be a module implementing the PEP 517 hooks.
build-backend = "some_build_backend.hooks"
Configuration reference
The following values can be set in pyproject.toml
, in the
tool.buildsys-dateversion
table.
[tool.buildsys-dateversion]
# Should point at a module implementing PEP 517 hooks.
# If omitted, default is "setuptools.build_meta:__legacy__"
build-backend = "some_build_backend.hooks"
# A comment added on patched __version__ lines.
version-marker = "generated by buildsys-dateversion"
# Path to the file containing __version__.
# If omitted, the file is located automatically.
version-path = "src/mymodule/__init__.py"
Caveats
Take note of the following before using this project:
- The setting of the
__version__
attribute currently relies on temporarily patching files in the source tree, which has some implications:- The source tree during a build must not be read-only.
- If the build process is interrupted, the file defining
__version__
might not be restored to its original state.
buildsys-dateversion
is implemented as a PEP 517 build backend which wraps another PEP 517 build backend. However, this wrapping is not perfect and might result in subtle behavior differences from the underlying backend.
License
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
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 buildsys-dateversion-2023.5.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2085976e73d5158d15e2f68ed26ee197ad3b293c6a104be4e5ad686c69419913 |
|
MD5 | 7ecfa913861721a99a4490be70e0b7ec |
|
BLAKE2b-256 | f4d95ffab2b6bafbb748d3d74bdd3a23258708ff45747302fb54670f5e687a0c |
Hashes for buildsys_dateversion-2023.5.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80c192abc895aaf3cb85d966e5712a6a2c88fd32e28d49c7df957571e8d9bf23 |
|
MD5 | a0909426ff0d149b88355b83b88388f8 |
|
BLAKE2b-256 | d70b03259c421db96cd8f0af9ff12e55248eee9f9a9e7c1d99993abaa390a3d4 |