Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,14 @@
print(f"- Git commit to target for the release: {commit_sha}")
print(f"- CPython release number: {db['release']}")
print()
print("Or using the GitHub CLI run:")
print(

Check warning on line 876 in run_release.py

View check run for this annotation

Codecov / codecov/patch

run_release.py#L875-L876

Added lines #L875 - L876 were not covered by tests
" gh workflow run source-and-docs-release.yml --repo python/release-tools"
f" -f git_remote={origin_remote_github_owner}"
f" -f git_commit={commit_sha}"
f" -f cpython_release={db['release']}"
)
print()

Check warning on line 882 in run_release.py

View check run for this annotation

Codecov / codecov/patch

run_release.py#L882

Added line #L882 was not covered by tests

if not ask_question("Have you started the source and docs build?"):
raise ReleaseException("Source and docs build must be started")
Expand Down