@@ -72,13 +72,7 @@ Roundup release checklist:
7272
7373 python3 setup.py check --restructuredtext --metadata --strict
7474
75- 6. Clean out all *.orig, *.rej, .#* files from the source.
76-
77- find . -name '*.orig' -exec rm {} \;
78- find . -name '*.rej' -exec rm {} \;
79- find . -name '.#*' -exec rm {} \;
80-
81- 6a. Rebuild .mo translation files in distribution
75+ 6. Rebuild .mo translation files in distribution
8276
8377 cd locale
8478 make
@@ -89,7 +83,15 @@ Roundup release checklist:
8983 python3 setup.py clean --all
9084 rm -rf build/share # deletes locale .mo files
9185
92- Build including new .mo files built in 6a.
86+ Clean out all *.orig, *.rej, .#* files from the source.
87+
88+ find . -name '*.orig' -exec rm {} \;
89+ find . -name '*.rej' -exec rm {} \;
90+ find . -name '.#*' -exec rm {} \;
91+
92+ 7a.
93+
94+ Build including new .mo files built in 6.
9395
9496 python3 setup.py build
9597
@@ -99,6 +101,7 @@ Roundup release checklist:
99101
100102 cd doc
101103 make
104+ cd ..
102105
103106 runs commands to turn man pages into html files and adds them to
104107 html_extra/man_pages subdir. Then it generates html text from
@@ -113,10 +116,11 @@ Roundup release checklist:
113116
114117 (if you find sdist a little verbose, add "--quiet" to the end of the
115118 command)
119+
1161209a. 2021/04/17 skip this for now. Need to make sure that whl installs
117121 executable scripts properly and update these directions to test.
118122
119- python2 setup.py bdist_wheel; python3 setup.py bdist_wheel
123+ python3 setup.py bdist_wheel
120124
121125 to create binary distributions in wheel format. (egg format is
122126 deprecated.)
@@ -143,6 +147,7 @@ Roundup release checklist:
143147
144148 any file with a count of 2 or more needs to be removed from
145149 MANIFEST.in and possibly cleaned out of the build tree.
150+
14615110b: if you added/removed files rebuild starting at step 6a.
147152
14815311. Unpack the new tarball created in dist/roundup-<version>.tar.gz
0 commit comments