-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_checklist.txt
55 lines (32 loc) · 1.43 KB
/
release_checklist.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
50
51
52
53
54
55
=================
Release Checklist
=================
1. Check that *packages* argument of setup() is correct. Check with:
>>> import setuptools
>>> setuptools.find_packages('.', exclude=['tests'])
2. Make sure correct version number is set in the following files:
datatest/__init__.py
docs/conf.py
3. Make sure __past__ sub-package includes a stub module for the
current API version.
4. Update README.rst (including "Backward Compatibility" section).
5. Commit and push final changes to upstream repository:
Prepare version info, CHANGELOG, and README for version X.X.X release.
6. Perform final checks to make sure there are no CI test failures.
7. Remove all existing files in the dist/ folder.
8. Build new distributions:
python setup.py sdist bdist_wheel
9. Upload source and wheel distributions to PyPI:
twine upload dist/*
10. Double check PyPI project page and test installation from PyPI.
11. Add version tag to upstream repository (also used by readthedocs.org).
12. Publish update announcement to relevant mailing lists:
13. Iterate version number in repository so that "latest" docs aren't
confused with the just-published "stable" docs:
datatest/__init__.py
docs/conf.py
Commit these changes with a comment like the one below:
Iterate version number to differentiate development version
from latest release.