Release process¶
Release Cadence¶
The pip project has a release cadence of releasing whatever is on master
every 3 months. This gives users a predictable pattern for when releases
are going to happen and prevents locking up improvements for fixes for long
periods of time, while still preventing massively fracturing the user base
with version numbers.
Our release months are January, April, July, October. The release date within that month will be up to the release manager for that release. If there are no changes, then that release month is skipped and the next release will be 3 month later.
The release manager may, at their discretion, choose whether or not there will be a pre-release period for a release, and if there is may extend that period into the next month if needed.
Because releases are made direct from the master branch, it is essential
that master is always in a releasable state. It is acceptable to merge
PRs that partially implement a new feature, but only if the partially
implemented version is usable in that state (for example, with reduced
functionality or disabled by default). In the case where a merged PR is found
to need extra work before being released, the release manager always has the
option to back out the partial change prior to a release. The PR can then be
reworked and resubmitted for the next release.
Deprecation Policy¶
Any change to pip that removes or significantly alters user-visible behavior that is described in the pip documentation will be deprecated for a minimum of 6 months before the change occurs. Deprecation will take the form of a warning being issued by pip when the feature is used. Longer deprecation periods, or deprecation warnings for behavior changes that would not normally be covered by this policy, are also possible depending on circumstances, but this is at the discretion of the pip developers.
Note that the documentation is the sole reference for what counts as agreed behavior. If something isn’t explicitly mentioned in the documentation, it can be changed without warning, or any deprecation period, in a pip release. However, we are aware that the documentation isn’t always complete - PRs that document existing behavior with the intention of covering that behavior with the above deprecation process are always acceptable, and will be considered on their merits.
Note
pip has a helper function for making deprecation easier for pip maintainers.
The supporting documentation can be found in the source code of
pip._internal.utils.deprecation.deprecated. The function is not a part of
pip’s public API.
Release Process¶
Creating a new release¶
- Checkout the current pip
masterbranch. - Ensure you have the latest
wheel,setuptools,twine,invokeandtowncrierpackages installed. - Generate a new
AUTHORS.txt(invoke generate.authors) and commit the results. - Bump the version in
pip/__init__.pyto the release version and commit the results. Usually this involves dropping just the.devNsuffix on the version. - Generate a new
NEWS.rst(invoke generate.news) and commit the results. - Create a tag at the current commit, of the form
YY.N(git tag YY.N). - Checkout the tag (
git checkout YY.N). - Create the distribution files (
python setup.py sdist bdist_wheel). - Upload the distribution files to PyPI using twine
(
twine upload dist/*). - Push all of the changes including the tag.
- Regenerate the
get-pip.pyscript in the get-pip repository (as documented there) and commit the results. - Submit a Pull Request to CPython adding the new version of pip (and upgrading
setuptools) to
Lib/ensurepip/_bundled, removing the existing version, and adjusting the versions listed inLib/ensurepip/__init__.py.
Creating a bug-fix release¶
Sometimes we need to release a bugfix release of the form YY.N.Z+1. In
order to create one of these the changes should already be merged into the
master branch.
- Create a new
release/YY.N.Z+1branch off of theYY.Ntag using the commandgit checkout -b release/YY.N.Z+1 YY.N. - Cherry pick the fixed commits off of the
masterbranch, fixing any conflicts and moving any changelog entries from the development version’s changelog section to theYY.N.Z+1section. - Push the
release/YY.N.Z+1branch to github and submit a PR for it against themasterbranch and wait for the tests to run. - Once tests run, merge the
release/YY.N.Z+1branch into master, and follow the above release process starting with step 4.
