Skip to content

Commit

Permalink
Pause in prepare-release for updating the NEWS file
Browse files Browse the repository at this point in the history
This enables making fixes to the NEWS file to fix issues prior to moving
forward with the rest of the release process.
  • Loading branch information
pradyunsg committed Jun 12, 2024
1 parent ccd7be1 commit b2fdf3b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,11 @@ def prepare_release(session: nox.Session) -> None:

session.log("# Generating NEWS")
release.generate_news(session, version)
if sys.stdin.isatty():
input(
"Please review the NEWS file, make necessary edits, and stage them.\n"
"Press Enter to continue..."
)

session.log(f"# Bumping for release {version}")
release.update_version_file(version, VERSION_FILE)
Expand Down

0 comments on commit b2fdf3b

Please sign in to comment.