First beta: update generation of next "What's New" #245
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For the first beta like 3.14.0b1, we create a new
3.14branch andmainis the for 3.15.The release automation creates the new "What's New in Python 3.15"
Doc/whatsnew/3.15.rstfile from a template.This PR does two things.
First, add a missing newline to the template to fix:
https://github.com/python/cpython/actions/runs/14888234804/job/41813532717?pr=133588
Second, right now, we create the new file
Doc/whatsnew/3.15.rstbut don't add it to the toctree inDoc/whatsnew/index.rst, and get an error:So this PR also updates
Doc/whatsnew/index.rstwith the new3.15.rstentry.