summaryrefslogtreecommitdiff
path: root/utils/release-checklist
diff options
context:
space:
mode:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2022-04-16 21:38:39 +0100
committerAdam Turner <9087854+AA-Turner@users.noreply.github.com>2022-09-13 10:31:27 +0100
commitb34765780950a04a8a387b1cafa33bf99b704bde (patch)
tree2ae15e6577b48a96a7aaba72d2bc2be4a394197c /utils/release-checklist
parent5477ef6675247e1eeb0c7d3842fba41f59147e20 (diff)
downloadsphinx-git-b34765780950a04a8a387b1cafa33bf99b704bde.tar.gz
Use declarative metadata
- Move to pyproject.toml metadata - Update references to `setup.py` - Use pypa/build - Update workflows and tooling
Diffstat (limited to 'utils/release-checklist')
-rw-r--r--utils/release-checklist8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/release-checklist b/utils/release-checklist
index 920c1ce8f..0d1733229 100644
--- a/utils/release-checklist
+++ b/utils/release-checklist
@@ -10,7 +10,7 @@ for stable releases
* Check diff by ``git diff``
* ``git commit -am 'Bump to X.Y.Z final'``
* ``make clean``
-* ``python setup.py release bdist_wheel sdist``
+* ``python -m build .``
* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]``
* open https://pypi.org/project/Sphinx/ and check there are no obvious errors
* ``sh utils/bump_docker.sh X.Y.Z``
@@ -34,7 +34,7 @@ for first beta releases
* Check diff by ``git diff``
* ``git commit -am 'Bump to X.Y.0 beta1'``
* ``make clean``
-* ``python setup.py release bdist_wheel sdist``
+* ``python -m build .``
* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]``
* open https://pypi.org/project/Sphinx/ and check there are no obvious errors
* ``git tag vX.Y.0b1``
@@ -62,7 +62,7 @@ for other beta releases
* Check diff by ``git diff``
* ``git commit -am 'Bump to X.Y.0 betaN'``
* ``make clean``
-* ``python setup.py release bdist_wheel sdist``
+* ``python -m build .``
* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]``
* open https://pypi.org/project/Sphinx/ and check there are no obvious errors
* ``git tag vX.Y.0bN``
@@ -87,7 +87,7 @@ for major releases
* Check diff by ``git diff``
* ``git commit -am 'Bump to X.Y.0 final'``
* ``make clean``
-* ``python setup.py release bdist_wheel sdist``
+* ``python -m build .``
* ``twine upload dist/Sphinx-* --sign --identity [your GPG key]``
* open https://pypi.org/project/Sphinx/ and check there are no obvious errors
* ``sh utils/bump_docker.sh X.Y.Z``