Merge branch 'core-scripts-v0.15b0'

This commit is contained in:
Nathaniel Ruiz Nowell
2020-11-02 14:55:16 -08:00
3 changed files with 183 additions and 12 deletions

View File

@ -10,7 +10,7 @@ def is_valid_rst(path):
"""Checks if RST can be rendered on PyPI."""
with open(path) as readme_file:
markup = readme_file.read()
return readme_renderer.rst.render(markup) is not None
return readme_renderer.rst.render(markup, stream=sys.stderr) is not None
def parse_args():