Lines Matching +full:update +full:- +full:docs +full:- +full:branch
2 # Copyright © 2019-2020 Intel Corporation
22 """Update the main page, release notes, and calendar."""
30 def update_calendar(version: str) -> None:
31 p = pathlib.Path('docs') / 'release-calendar.csv'
36 branch = None
40 branch = line[0]
42 if branch is not None:
43 calendar[i + 1][0] = branch
53 def main() -> None:
60 subprocess.run(['git', 'commit', '-m',
61 f'docs: update calendar for {args.version}'])