Skip to main content

No project description provided

Project description

autocalver

PyPI version GitHub Actions Status Documentation Status

Tired of "bumping versions"? Sick of commits, pull requests, tags, and a lot of manual work just to release the code that is already in the main branch?

The autocalver package is here to automatically generate "calendar versions", and chew gum, and it's all out of gum.

It automatically produces a calver based on a commit log. The version depends on the time of the commit, not the time of the build. The version format is <year>.<month>.<day>.<seconds from beginning of day>. The time is always converted to UTC first.

Configuration

The right way to make sure autocalver is installed is to require it in pyproject.toml:

[build-system]
requires = ["setuptools>=45", "wheel", "autocalver"]

Note that, by default, autocalver will not run any version-control commands. Before using autocalver, run a command to pull a prefix of the commit log, and save it to a file. For example, with git, you can use

git log -n 1 --date=iso > git-log-head

One advantage of separating the stages like that is that it is possible to have the package builder itself running in an environent that does not have access to the version control metadata, only the source files and the prefix of the commit log.

The tool overrides the version in the setup.cfg, if any. Configuration is done via pyproject.toml. For example, a configuration appropriate to pipeline CI might be:

[tool.autocalver]
use = true
log = "git-log-head"
is_main_var = "BUILD_BRANCH_REF"
is_main_match = ".*/main$"

Note that if you use the [project] entry in pyproject.toml, it must:

  • Not have version
  • Explicitly declare dynamic = ["version"]

Building packages

Based on the given environment variable and its value the version is produced as development, rc, or a full-release. This allows checking against a release-system's environment variables for the branch, pull request, or workflow name.

With this configuration, the following versions will be produced (asssuming the time of the latest commit is October 10, 2021, 8:39:44 in Pacific time).

Local build:

$ python -m build -n --wheel 2>& 1| tail -1
Successfully built fake_package-2021.10.10.56384.dev1-py3-none-any.whl

Note that the version has a dev1 in its name.

Simulate tagged build:

$ GITHUB_REF=refs/tags/test-fix-PROJ-121 python -m build -n --wheel 2>& 1| tail -1
Successfully built fake_package-2021.10.10.56384rc1-py3-none-any.whl

This version has an rc1 in the name, marking it as a pre-release. This allows pushing tags to produce packages and test fixes. However, since tag pushes are not reviewed, these do not produce releases.

Simulate merge to main:

$ GITHUB_REF=refs/heads/main python -m build -n --wheel 2>& 1| tail -1
Successfully built fake_package-2021.10.10.56384-py3-none-any.whl

Note that without use = true, the tool will not replace the version. If use = true is there, missing any of the other variables will cause an error during the build, as a non-existing build is better than a broken when.

Automatically fetching the latest commit

Defining the optional field log_command will run the command if the file is unavailable at package build time. It will create the file for next time. Note that if the file is "out of date", it needs to be manually removed.

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

autocalver-2023.5.4.55367.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

autocalver-2023.5.4.55367-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file autocalver-2023.5.4.55367.tar.gz.

File metadata

  • Download URL: autocalver-2023.5.4.55367.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for autocalver-2023.5.4.55367.tar.gz
Algorithm Hash digest
SHA256 cff7429d54406af415bfcbdd32f918cee9450ff70a85dadbd5386712b9d6fdf0
MD5 718da832c60f1463cac6d264655cb5aa
BLAKE2b-256 082b25d51bff4131ff4e738eabc66773372f242430e34f90c86e35fc43c632c2

See more details on using hashes here.

File details

Details for the file autocalver-2023.5.4.55367-py3-none-any.whl.

File metadata

File hashes

Hashes for autocalver-2023.5.4.55367-py3-none-any.whl
Algorithm Hash digest
SHA256 165d0355be7f8f1016298ad04c3b54e3bcb5af1c4659b460d238bb4d2a93b2e6
MD5 2cd1a238fe9874c967ec0de153a60c11
BLAKE2b-256 22460b2440b6c49d3de3c97120293ce34d705134f19b1d3ad171e2a8a272e4aa

See more details on using hashes here.

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