File: release_process.rst

package info (click to toggle)
python-agate 1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,996 kB
  • sloc: python: 8,512; makefile: 126
file content (22 lines) | stat: -rw-r--r-- 849 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
===============
Release process
===============

If substantial changes were made to the code:

#. Ensure any new modules have been added to setup.py's ``packages`` list
#. Ensure any new public interfaces have been added to the documentation
#. Ensure TableSet proxy methods have been added for new Table methods

Then:

#. All tests pass on continuous integration
#. The changelog is up-to-date and dated
#. The version number is correct in:
    * setup.py
    * docs/conf.py
#. Check for new authors: ``git log --invert-grep --author='James McKinney'``
#. Run ``python charts.py`` to update images in the documentation
#. Tag the release: ``git tag -a x.y.z -m 'x.y.z release.'; git push --follow-tags``
#. Upload to PyPI: ``rm -rf dist; python setup.py sdist bdist_wheel; twine upload dist/*``
#. Build the documentation on ReadTheDocs manually