Skip to content

Python 3.13 is now main #1099

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 23, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions _static/devguide_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
stroke: #008844;
}

.release-cycle-chart .release-cycle-blob.release-cycle-blob-prerelease {
fill: teal;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since all the other colors are in hex, maybe we should do the same here? Then we can just average bugfix and feature to get the "right" value ;)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We also have other named HTML colours where available in this file: black and white.

stroke: darkgreen;
}

.release-cycle-chart .release-cycle-blob.release-cycle-blob-feature {
fill: #2222EE;
stroke: #008888;
Expand Down
10 changes: 9 additions & 1 deletion include/release-cycle.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
{
"3.12": {
"3.13": {
"branch": "main",
"pep": 693,
"status": "feature",
"first_release": "2024-10-07",
"end_of_life": "2029-10",
"release_manager": "Thomas Wouters"
},
"3.12": {
"branch": "3.12",
"pep": 693,
"status": "prerelease",
"first_release": "2023-10-02",
"end_of_life": "2028-10",
"release_manager": "Thomas Wouters"
Expand Down
2 changes: 1 addition & 1 deletion versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Status of Python Versions
=========================

The main branch is currently the future Python 3.12, and is the only
The ``main`` branch is currently the future Python 3.13, and is the only
branch that accepts new features. The latest release for each Python
version can be found on the `download page <https://www.python.org/downloads/>`_.

Expand Down