forked from Pylons/pyramid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASING.txt
51 lines (28 loc) · 1.1 KB
/
RELEASING.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Releasing Pyramid
=================
- Make sure all unit tests pass and statement coverage is at 100%::
$ python setup.py nosetests --with-coverage
- Make sure paster templates pass:
$ python template_tests.py
- Ensure all features of the release are documented (audit CHANGES.txt or
communicate with contributors).
- Copy relevant changes (delta bug fixes) from CHANGES.txt to
docs/whatsnew-X.X.
- Make sure docs render OK::
$ cd docs
$ make clean html
There should be no meaningful errors or warnings.
- Change setup.py version to the new version number.
- Change docs/conf.py version to the new version number.
- Change CHANGES.txt heading to reflect the new version number.
- Make sure PyPI long description renders (requires ``collective.dist``
installed into your Python)::
$ python setup.py check --restructuredtext
- Create a release tag.
- Release to PyPI::
$ python setup.py sdist register upload
- Edit `http://wiki.python.org/moin/WebFrameworks
<http://wiki.python.org/moin/WebFrameworks>`_.
- Publish new version of docs.
- Announce to maillist.
- Announce to Twitter.