Write the README files. Two README files are generated from the release notes, one in ``rst`` markup for the general release, the other in ``md`` markup for the github release notes. Parameters ---------- options : Set by ``task`` decorator.
(options)
| 235 | |
| 236 | @task |
| 237 | def write_release(options): |
| 238 | """Write the README files. |
| 239 | |
| 240 | Two README files are generated from the release notes, one in ``rst`` |
| 241 | markup for the general release, the other in ``md`` markup for the github |
| 242 | release notes. |
| 243 | |
| 244 | Parameters |
| 245 | ---------- |
| 246 | options : |
| 247 | Set by ``task`` decorator. |
| 248 | |
| 249 | """ |
| 250 | rdir = options.installers.releasedir |
| 251 | write_release_task(options, os.path.join(rdir, 'README')) |
nothing calls this directly
no test coverage detected