From c9890cb653eb682f95e1aad138a94195acfab0bf Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 11 May 2018 22:28:04 +0900 Subject: [PATCH] Update release-checklist --- utils/release-checklist | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/utils/release-checklist b/utils/release-checklist index aa4dcd2d3..cd3044a51 100644 --- a/utils/release-checklist +++ b/utils/release-checklist @@ -38,7 +38,8 @@ for first beta releases * Edit CHANGES if empty section exists * ``git commit -am 'Bump to X.Y.0 beta1'`` * ``make clean`` -* ``python setup.py release bdist_wheel sdist upload --identity=[your key]`` +* ``python setup.py release bdist_wheel sdist`` +* ``twine upload dist/ --sign --identity [your GPG key]`` * open https://pypi.python.org/pypi/Sphinx and check there are no obvious errors * ``git tag vX.Y.0b1`` * ``python utils/bump_version.py --in-develop X.Y.0b2`` (ex. 1.6.0b2) @@ -66,7 +67,8 @@ for other beta releases * Edit CHANGES if empty section exists * ``git commit -am 'Bump to X.Y.0 betaN'`` * ``make clean`` -* ``python setup.py release bdist_wheel sdist upload --identity=[your key]`` +* ``python setup.py release bdist_wheel sdist`` +* ``twine upload dist/ --sign --identity [your GPG key]`` * open https://pypi.python.org/pypi/Sphinx and check there are no obvious errors * ``git tag vX.Y.0bN`` * ``python utils/bump_version.py --in-develop X.Y.0bM`` (ex. 1.6.0b3) @@ -94,7 +96,8 @@ for major releases * Edit CHANGES if empty section exists * ``git commit -am 'Bump to X.Y.0 final'`` * ``make clean`` -* ``python setup.py release bdist_wheel sdist upload --identity=[your key]`` +* ``python setup.py release bdist_wheel sdist`` +* ``twine upload dist/ --sign --identity [your GPG key]`` * open https://pypi.python.org/pypi/Sphinx and check there are no obvious errors * ``git tag vX.Y.0`` * ``python utils/bump_version.py --in-develop X.Y.1b0`` (ex. 1.6.1b0)