2020-05-31 23:11:11 +08:00
|
|
|
import sys
|
|
|
|
from subprocess import call
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""
|
|
|
|
Platform agnostic wrapper script for towncrier.
|
|
|
|
Fixes the issue (#7251) where windows users are unable to natively run tox -e docs to build pytest docs.
|
|
|
|
"""
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(
|
|
|
|
"doc/en/_changelog_towncrier_draft.rst", "w", encoding="utf-8"
|
|
|
|
) as draft_file:
|
2020-05-31 23:11:11 +08:00
|
|
|
return call(("towncrier", "--draft"), stdout=draft_file)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(main())
|