-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
RELEASE CHECKLIST | ||
================= | ||
|
||
- update version to release version | ||
- setup.py | ||
- CHANGES.rst *(add release date)* | ||
- docs/source/conf.py | ||
- commit version changes to git | ||
- tag last commit with version number | ||
- ``git tag -a [version number]`` | ||
- build distributions: | ||
- ``python setup.py sdist`` | ||
- ``python setup.py bdist_wheel`` | ||
- upload to pypi | ||
- ``python setup.py register`` | ||
- ``python setup.py sdist upload`` | ||
- ``python setup.py bdist_wheel upload`` | ||
- confirm README contents and such are properly rendered on PyPI. | ||
If rendering is incorrect, test RST files with an RST parsing | ||
program to test for bugs. (http://rst.ninjs.org/ will give error | ||
messages) | ||
|
||
|
||
POST-RELEASE CHECKLIST | ||
====================== | ||
|
||
- update version to development version | ||
- setup.py | ||
- CHANGES.rst | ||
- docs/source/conf.py | ||
- commit version changes to git | ||
|