From f33a84a5d0517049ac6ac1612912b8617b22f6d9 Mon Sep 17 00:00:00 2001 From: elmotec Date: Mon, 1 Apr 2019 18:43:09 -0400 Subject: [PATCH] Minor doc change to CONTRIBUTING.rst --- CONTRIBUTING.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 57677fc..3285114 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -119,11 +119,12 @@ A reminder for the maintainers on how to deploy. Make sure all your changes are committed (including an entry in HISTORY.rst). Then run:: - $ bump2version patch # possible: major / minor / patch + $ python setup.py test # there should be no errors. + $ bump2version patch # possible: major / minor / patch. $ git push $ git push --tags - $ python setup.py sdist # will generate new .tar.gz in dist folder - $ twine check dist/.tar.gz + $ python setup.py sdist # will generate new .tar.gz in dist folder. + $ twine check dist/.tar.gz # status should be Passed $ twine upload dist/.tar.gz Travis will then deploy to PyPI if tests pass.