summaryrefslogtreecommitdiff
path: root/RELEASING.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-10-15 00:36:18 -0500
committerMichael Merickel <michael@merickel.org>2018-10-15 01:15:01 -0500
commit17e3abf320f6d9cd90f7e5a0352280c2fef584af (patch)
tree5b3fe0b39a0fc33d545733d821738845909f638c /RELEASING.txt
parent2e7a9a40c1468e1c56d9083f88830d7e23623308 (diff)
downloadpyramid-17e3abf320f6d9cd90f7e5a0352280c2fef584af.tar.gz
pyramid-17e3abf320f6d9cd90f7e5a0352280c2fef584af.tar.bz2
pyramid-17e3abf320f6d9cd90f7e5a0352280c2fef584af.zip
add a "tox -e build" for building the distribution
Diffstat (limited to 'RELEASING.txt')
-rw-r--r--RELEASING.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/RELEASING.txt b/RELEASING.txt
index 99d077d8b..ae90a244c 100644
--- a/RELEASING.txt
+++ b/RELEASING.txt
@@ -71,17 +71,20 @@ Prepare new release branch
- Change setup.py version to the release version number.
-- Make sure PyPI long description renders (requires ``readme_renderer``
- installed into your Python)::
+- Make sure PyPI long description renders::
- $ python setup.py check -r -s -m
+ $ tox -e lint
- Create a release tag.
-- Make sure your Python has ``setuptools-git``, ``twine``, and ``wheel``
- installed and release to PyPI::
+ $ git tag X.X
+
+- Build the sdist and wheel.
+
+ $ tox -e build
+
+- Upload the artifacts to PyPI:
- $ python setup.py sdist bdist_wheel
$ twine upload dist/pyramid-X.X-*
- Configure RTD to publish the new release version of the docs.