Skip to content

Commit 12bb9f2

Browse files
committed
More uniformity in howto.txt
1 parent da2fc7d commit 12bb9f2

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

howto.txt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
- Check that the current virtualenv matches the current coverage branch.
44
- Version number in coverage/version.py
5-
version_info = (4, 0, 2, 'alpha', 1)
6-
version_info = (4, 0, 2, 'beta', 1)
7-
version_info = (4, 0, 2, 'candidate', 1)
8-
version_info = (4, 0, 2, 'final', 0)
5+
version_info = (4, 0, 2, "alpha", 1)
6+
version_info = (4, 0, 2, "beta", 1)
7+
version_info = (4, 0, 2, "candidate", 1)
8+
version_info = (4, 0, 2, "final", 0)
99
- Python version number in classifiers in setup.py
1010
- Copyright date in NOTICE.txt
1111
- Update specific Python versions in appveyor.yml ("PYTHON_VERSION")
@@ -23,19 +23,19 @@
2323
- Check that the docs build correctly:
2424
$ tox -e doc
2525
- Done with changes to source files, check them in.
26-
- git push
26+
$ git push
2727
- Generate new sample_html to get the latest, incl footer version number:
28-
make clean
29-
pip install -e .
30-
cd ~/cog/trunk
31-
rm -rf htmlcov
32-
coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; coverage combine; coverage html
28+
$ make clean
29+
$ pip install -e .
30+
$ cd ~/cog/trunk
31+
$ rm -rf htmlcov
32+
$ coverage run --branch --source=cogapp -m pytest -k CogTestsInMemory; coverage combine; coverage html
3333
- IF PRE-RELEASE:
34-
rm -f ~/coverage/trunk/doc/sample_html_beta/*.*
35-
cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/
34+
$ rm -f ~/coverage/trunk/doc/sample_html_beta/*.*
35+
$ cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/
3636
- IF NOT PRE-RELEASE:
37-
rm -f ~/coverage/trunk/doc/sample_html/*.*
38-
cp -r htmlcov/ ~/coverage/trunk/doc/sample_html/
37+
$ rm -f ~/coverage/trunk/doc/sample_html/*.*
38+
$ cp -r htmlcov/ ~/coverage/trunk/doc/sample_html/
3939
cd ~/coverage/trunk
4040
- IF NOT PRE-RELEASE:
4141
check in the new sample html
@@ -62,22 +62,22 @@
6262
$ make test_upload
6363
- Update PyPI:
6464
- upload kits:
65-
- $ make kit_upload
65+
$ make kit_upload
6666
- Tag the tree
67-
- git tag coverage-3.0.1
68-
- git push --tags
67+
$ git tag coverage-3.0.1
68+
$ git push --tags
6969
- Bump version:
7070
- coverage/version.py
7171
- increment version number
7272
- IF NOT PRE-RELEASE:
7373
- set to alpha-0 if just released.
7474
- CHANGES.rst
7575
- add an "Unreleased" section to the top.
76-
- git push
76+
$ git push
7777
- Update Tidelift:
78-
- make tidelift_relnotes
78+
$ make tidelift_relnotes
7979
- Update GitHub releases:
80-
- make github_releases
80+
$ make github_releases
8181
- Update readthedocs
8282
- IF NOT PRE-RELEASE:
8383
- update git "stable" branch to point to latest release

0 commit comments

Comments
 (0)