1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
This is a walkthrough of the NumPy 1.21.0 release on Linux, modified for
building with GitHub Actions and cibuildwheels and uploading to the
`anaconda.org staging repository for NumPy <https://anaconda.org/multibuild-wheels-staging/numpy>`_.
The commands can be copied into the command line, but be sure to replace 1.21.0
by the correct version. This should be read together with the
:ref:`general release guide <prepare_release>`.
Facility preparation
====================
Before beginning to make a release, use the ``*_requirements.txt`` files to
ensure that you have the needed software. Most software can be installed with
pip, but some will require apt-get, dnf, or whatever your system uses for
software. You will also need a GitHub personal access token (PAT) to push the
documentation. There are a few ways to streamline things:
- Git can be set up to use a keyring to store your GitHub personal access token.
Search online for the details.
- You can use the ``keyring`` app to store the PyPI password for twine. See the
online twine documentation for details.
Release preparation
===================
Add/drop Python versions
------------------------
When adding or dropping Python versions, three files need to be edited:
- .github/workflows/wheels.yml # for github cibuildwheel
- .travis.yml # for cibuildwheel aarch64 builds
- setup.py # for classifier and minimum version check.
Make these changes in an ordinary PR against main and backport if necessary.
Using the `BLD:` prefix (build label) for the commit summary will cause the
wheel builds to be run so that the changes will be tested, We currently release
wheels for new Python versions after the first Python rc once manylinux and
cibuildwheel support it. For Python 3.11 we were able to release within a week
of the rc1 announcement.
Backport Pull Requests
----------------------
Changes that have been marked for this release must be backported to the
maintenance/1.21.x branch.
Update release documentation
----------------------------
Four documents usually need to be updated or created before making a release:
- The changelog
- The release-notes
- The ``.mailmap`` file
- The ``doc/source/release.rst`` file
These changes should be made as an ordinary PR against the maintenance branch.
After release all files except ``doc/source/release.rst`` will need to be
forward ported to the main branch.
Generate the changelog
~~~~~~~~~~~~~~~~~~~~~~
The changelog is generated using the changelog tool::
$ python tools/changelog.py $GITHUB v1.20.0..maintenance/1.21.x > doc/changelog/1.21.0-changelog.rst
where ``GITHUB`` contains your GitHub access token. The text will need to be
checked for non-standard contributor names and dependabot entries removed. It
is also a good idea to remove any links that may be present in the PR titles
as they don't translate well to markdown, replace them with monospaced text. The
non-standard contributor names should be fixed by updating the ``.mailmap``
file, which is a lot of work. It is best to make several trial runs before
reaching this point and ping the malefactors using a GitHub issue to get the
needed information.
Finish the release notes
~~~~~~~~~~~~~~~~~~~~~~~~
If this is the first release in a series the release note is generated, see
the release note in ``doc/release/upcoming_changes/README.rst`` to see how to
do this. Generating the release notes will also delete all the news
fragment files in ``doc/release/upcoming_changes/``.
The generated release note will always need some fixups, the introduction will
need to be written, and significant changes should be called out. For patch
releases the changelog text may also be appended, but not for the initial
release as it is too long. Check previous release notes to see how this is
done. Note that the ``:orphan:`` markup at the top, if present, will need
changing to ``.. currentmodule:: numpy`` and the ``doc/source/release.rst``
index file will need updating.
Check the ``pavement.py`` file
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Check that the pavement.py file points to the correct release notes. It should
have been updated after the last release, but if not, fix it now::
$ gvim pavement.py
Release walkthrough
===================
Note that in the code snippets below, ``upstream`` refers to the root repository on
GitHub and ``origin`` to its fork in your personal GitHub repositories. You may
need to make adjustments if you have not forked the repository but simply
cloned it locally. You can also edit ``.git/config`` and add ``upstream`` if it
isn't already present.
1. Prepare the release commit
-----------------------------
Checkout the branch for the release, make sure it is up to date, and clean the
repository::
$ git checkout maintenance/1.21.x
$ git pull upstream maintenance/1.21.x
$ git submodule update
$ git clean -xdfq
Sanity check::
$ python3 runtests.py -m "full"
Tag the release and push the tag. This requires write permission for the numpy
repository::
$ git tag -a -s v1.21.0 -m"NumPy 1.21.0 release"
$ git push upstream v1.21.0
If you need to delete the tag due to error::
$ git tag -d v1.21.0
$ git push --delete upstream v1.21.0
2. Build wheels
---------------
Build wheels via cibuildwheel (preferred)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tagging the build at the beginning of this process will trigger a wheel build
via cibuildwheel and upload wheels and an sdist to the staging repo. The CI run
on github actions (for all x86-based and macOS arm64 wheels) takes about 1 1/4
hours. The CI run on travis (for aarch64) takes less time. You can check for
uploaded files at the `staging repository`_, but note that it is not closely
synched with what you see of the running jobs.
If you wish to manually trigger a wheel build, you can do so:
- On github actions -> `Wheel builder`_ there is a "Run workflow" button, click
on it and choose the tag to build
- On travis_ there is a "More Options" button, click on it and choose a branch
to build. There does not appear to be an option to build a tag.
If a wheel build fails for unrelated reasons, you can rerun it individually:
- On github actions select `Wheel builder`_ click on the commit that contains
the build you want to rerun. On the left there is a list of wheel builds,
select the one you want to rerun and on the resulting page hit the
counterclockwise arrows button.
- On travis_ select the failing build, which will take you to the travis job for
that build. Hit the restart job button.
Note that if you do need to rerun jobs, you will need to delete the uploaded
file, if any, in the anaconda `staging repository`_, The old files will not be
overwritten.
.. _`staging repository`: https://anaconda.org/multibuild-wheels-staging/numpy/files
.. _`Wheel builder`: https://github.com/numpy/numpy/actions/workflows/wheels.yml
.. _travis : https://app.travis-ci.com/github/numpy/numpy
3. Download wheels
------------------
When the wheels have all been successfully built and staged, download them from the
Anaconda staging directory using the ``tools/download-wheels.py`` script::
$ cd ../numpy
$ mkdir -p release/installers
$ python3 tools/download-wheels.py 1.21.0
4. Generate the README files
----------------------------
This needs to be done after all installers are downloaded, but before the pavement
file is updated for continued development::
$ paver write_release
5. Reset the maintenance branch into a development state (skip for prereleases)
-------------------------------------------------------------------------------
Create release notes for next release and edit them to set the version. These
notes will be a skeleton and have little content::
$ cp doc/source/release/template.rst doc/source/release/1.21.1-notes.rst
$ gvim doc/source/release/1.21.1-notes.rst
$ git add doc/source/release/1.21.1-notes.rst
Add new release notes to the documentation release list and update the
``RELEASE_NOTES`` variable in ``pavement.py``::
$ gvim doc/source/release.rst pavement.py
Commit the result::
$ git commit -a -m"REL: prepare 1.21.x for further development"
$ git push upstream HEAD
6. Upload to PyPI
-----------------
Upload to PyPI using ``twine``. A recent version of ``twine`` of is needed
after recent PyPI changes, version ``3.4.1`` was used here::
$ cd ../numpy
$ twine upload release/installers/*.whl
$ twine upload release/installers/numpy-1.21.0.tar.gz # Upload last.
If one of the commands breaks in the middle, you may need to selectively upload
the remaining files because PyPI does not allow the same file to be uploaded
twice. The source file should be uploaded last to avoid synchronization
problems that might occur if pip users access the files while this is in
process, causing pip to build from source rather than downloading a binary
wheel. PyPI only allows a single source distribution, here we have
chosen the zip archive.
7. Upload files to github
-------------------------
Go to `<https://github.com/numpy/numpy/releases>`_, there should be a ``v1.21.0
tag``, click on it and hit the edit button for that tag. There are two ways to
add files, using an editable text window and as binary uploads. Start by
editing the ``release/README.md`` that is translated from the rst version using
pandoc. Things that will need fixing: PR lines from the changelog, if included,
are wrapped and need unwrapping, links should be changed to monospaced text.
Then copy the contents to the clipboard and paste them into the text window. It
may take several tries to get it look right. Then
- Upload ``release/installers/numpy-1.21.0.tar.gz`` as a binary file.
- Upload ``release/README.rst`` as a binary file.
- Upload ``doc/changelog/1.21.0-changelog.rst`` as a binary file.
- Check the pre-release button if this is a pre-releases.
- Hit the ``{Publish,Update} release`` button at the bottom.
8. Upload documents to numpy.org (skip for prereleases)
-------------------------------------------------------
.. note:: You will need a GitHub personal access token to push the update.
This step is only needed for final releases and can be skipped for pre-releases
and most patch releases. ``make merge-doc`` clones the ``numpy/doc`` repo into
``doc/build/merge`` and updates it with the new documentation::
$ git clean -xdfq
$ git co v1.21.0
$ pushd doc
$ make docenv && source docenv/bin/activate
$ make merge-doc
$ pushd build/merge
If the release series is a new one, you will need to add a new section to the
``doc/build/merge/index.html`` front page just after the "insert here" comment::
$ gvim index.html +/'insert here'
Further, update the version-switcher json file to add the new release and
update the version marked `(stable)`::
$ gvim _static/versions.json
Otherwise, only the ``zip`` link should be updated with the new tag name. Since
we are no longer generating ``pdf`` files, remove the line for the ``pdf``
files if present::
$ gvim index.html +/'tag v1.21'
You can "test run" the new documentation in a browser to make sure the links
work::
$ firefox index.html # or google-chrome, etc.
Update the stable link and update::
$ ln -sfn 1.21 stable
$ ls -l # check the link
Once everything seems satisfactory, update, commit and upload the changes::
$ python3 update.py
$ git commit -a -m"Add documentation for v1.21.0"
$ git push
$ deactivate
$ popd
$ popd
9. Announce the release on numpy.org (skip for prereleases)
-----------------------------------------------------------
This assumes that you have forked `<https://github.com/numpy/numpy.org>`_::
$ cd ../numpy.org
$ git checkout main
$ git pull upstream main
$ git checkout -b announce-numpy-1.21.0
$ gvim content/en/news.md
- For all releases, go to the bottom of the page and add a one line link. Look
to the previous links for example.
- For the ``*.0`` release in a cycle, add a new section at the top with a short
description of the new features and point the news link to it.
commit and push::
$ git commit -a -m"announce the NumPy 1.21.0 release"
$ git push origin HEAD
Go to your Github fork and make a pull request.
10. Announce to mailing lists
-----------------------------
The release should be announced on the numpy-discussion, scipy-devel,
scipy-user, and python-announce-list mailing lists. Look at previous
announcements for the basic template. The contributor and PR lists are the same
as generated for the release notes above. If you crosspost, make sure that
python-announce-list is BCC so that replies will not be sent to that list.
11. Post-release tasks (skip for prereleases)
---------------------------------------------
Checkout main and forward port the documentation changes::
$ git checkout -b post-1.21.0-release-update
$ git checkout maintenance/1.21.x doc/source/release/1.21.0-notes.rst
$ git checkout maintenance/1.21.x doc/changelog/1.21.0-changelog.rst
$ git checkout maintenance/1.21.x .mailmap # only if updated for release.
$ gvim doc/source/release.rst # Add link to new notes
$ git status # check status before commit
$ git commit -a -m"MAINT: Update main after 1.21.0 release."
$ git push origin HEAD
Go to GitHub and make a PR.
12. Update oldest-supported-numpy
---------------------------------
If this release is the first one to support a new Python version, or the first
to provide wheels for a new platform or PyPy version, the version pinnings
in https://github.com/scipy/oldest-supported-numpy should be updated.
Either submit a PR with changes to ``setup.cfg`` there, or open an issue with
info on needed changes.
|