mirror of https://github.com/mahmoud/boltons.git
a little release checklist right in setup.py
This commit is contained in:
parent
9f61b1b0e0
commit
87ac574fa4
19
setup.py
19
setup.py
|
@ -42,3 +42,22 @@ setup(name='boltons',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: Implementation :: PyPy', ]
|
'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
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
Loading…
Reference in New Issue