a little release checklist right in setup.py

This commit is contained in:
Mahmoud Hashemi 2016-11-06 00:31:06 -07:00
parent 9f61b1b0e0
commit 87ac574fa4
1 changed files with 19 additions and 0 deletions

View File

@ -42,3 +42,22 @@ setup(name='boltons',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy', ]
)
"""
A brief checklist for release:
* tox
* git commit (if applicable)
* Bump setup.py version off of -dev
* git commit -a -m "bump version for x.y.z release"
* python setup.py sdist bdist_wheel upload
* bump docs/conf.py version
* git commit
* git tag -a x.y.z -m "brief summary"
* write CHANGELOG
* git commit
* bump setup.py version onto n+1 dev
* git commit
* git push
"""