Black has had a lot of work done into standardizing and automating its release process. This document sets out to explain how everything works and how to release Black using said automation.
We aim to release whatever is on main every 1-2 months. This ensures merged improvements and bugfixes are shipped to users reasonably quickly, while not massively fracturing the user-base with too many versions. This also keeps the workload on maintainers consistent and predictable.
If there‘s not much new on main to justify a release, it’s acceptable to skip a month's release. Ideally January releases should not be skipped because as per our stability policy, the first release in a new calendar year may make changes to the stable style. While the policy applies to the first release (instead of only January releases), confining changes to the stable style to January will keep things predictable (and nicer) for users.
Unless there is a serious regression or bug that requires immediate patching, there should not be more than one release per month. While version numbers are cheap, releases require a maintainer to both commit to do the actual cutting of a release, but also to be able to deal with the potential fallout post-release. Releasing more frequently than monthly nets rapidly diminishing returns.
You must have write permissions for the Black repository to cut a release.
The 10,000 foot view of the release process is that you prepare a release PR and then publish a GitHub Release. This triggers release automation that builds all release artifacts and publishes them to the various platforms we publish to.
We now have a scripts/release.py script to help with cutting the release PRs.
python3 scripts/release.py --help is your friend.release.py has only been tested in Python 3.12 (so get with the times :D)To cut a release:
YY.M.N formatN should be 022.1.0release.py will calculate this and log to stderr for you copy paste pleasuregit diff origin/stable CHANGES.md)CHANGES.md and the docs to version the latest changespython3 scripts/release.py [--debug] to generate most changesrelease.py fails manually edit; otherwise, yay, skip this step!## Unreleased header with the version number/integrations/source_version_control and {doc}/usage_and_configuration/the_basicsChoose a tag and type in the version number, then select the Create new tag: YY.M.N on publish option that appearsmain branchYY.M.N), as otherwise the default title is the last commit's titlepython3 scripts/release.py --add-changes-template|-a [--debug]Congratulations! You've successfully cut a new release of Black. Go and stand up and take a break, you deserve it.
Once the release artifacts reach PyPI, you may see new issues being filed indicating regressions. While regressions are not great, they don't automatically mean a hotfix release is warranted. Unless the regressions are serious and impact many users, a hotfix release is probably unnecessary. In the end, use your best judgement and ask other maintainers for their thoughts.
All of Black's release automation uses GitHub Actions. All workflows are therefore configured using YAML files in the .github/workflows directory of the Black repository.
They are triggered by the publication of a GitHub Release.
Below are descriptions of our release workflows.
This is our main workflow. It builds an sdist and wheels to upload to PyPI where the vast majority of users will download Black from. It's divided into three job groups:
This single job builds the sdist and pure Python wheel (i.e., a wheel that only contains Python code) using build and then uploads them to PyPI using twine. These artifacts are general-purpose and can be used on basically any platform supported by Python.
We use mypyc to compile Black into a CPython C extension for significantly improved performance. Wheels built with mypyc are platform and Python version specific. Supported platforms are documented in the FAQ.
These matrix jobs use cibuildwheel which handles the complicated task of building C extensions for many environments for us. Since building these wheels is slow, there are multiple mypyc wheels jobs (hence the term “matrix”) that build for a specific platform (as noted in the job name in parentheses).
Like the previous job group, the built wheels are uploaded to PyPI using twine.
So this job doesn't really belong here, but updating the stable branch after the other PyPI jobs pass (they must pass for this job to start) makes the most sense. This saves us from remembering to update the branch sometime after cutting the release.
This workflow builds native executables for multiple platforms using PyInstaller. This allows people to download the executable for their platform and run Black without a Python runtime installed.
The created binaries are stored on the associated GitHub Release for download over IPv4 only (GitHub still does not have IPv6 access 😢).
This workflow uses the QEMU powered buildx feature of Docker to upload an arm64 and amd64/x86_64 build of the official Black Docker image™.
This also runs on each push to `main`.