8000 Generate release cycle chart and CSV by hugovk · Pull Request #988 · python/devguide · GitHub
[go: up one dir, main page]

Skip to content
< 8000 div hidden="hidden" data-view-component="true" class="js-stale-session-flash stale-session-flash flash flash-warn flash-full"> Dismiss alert

Generate release cycle chart and CSV #988

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 21 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Wording: features -> feature
  • Loading branch information
hugovk committed Nov 22, 2022
commit a46648f7606b4d3c83f910ae80b9fac65fd6a237
2 changes: 1 addition & 1 deletion 8000 generate-release-cycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
""" # noqa: E501

MERMAID_STATUS_MAPPING = {
"features": "",
"feature": "",
"bugfix": "active,",
"security": "done,",
"end-of-life": "crit,",
Expand Down
2 changes: 1 addition & 1 deletion include/branches.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Branch,Schedule,Status,First release,End-of-life,Release manager
main,:pep:`693`,features,*2023-10-02*,*2028-10*,Thomas Wouters
main,:pep:`693`,feature,*2023-10-02*,*2028-10*,Thomas Wouters
3.11,:pep:`664`,bugfix,2022-10-24,*2027-10*,Pablo Galindo Salgado
3.10,:pep:`619`,bugfix,2021-10-04,*2026-10*,Pablo Galindo Salgado
3.9,:pep:`596`,security,2020-10-05,*2025-10*,Łukasz La 8000 nga
Expand Down
2 changes: 1 addition & 1 deletion include/release-cycle.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"cycle": "main",
"pep": 693,
"status": "features",
"status": "feature",
"releaseManager": "Thomas Wouters",
"releaseDate": "2023-10-02",
"eol": "2028-10"
Expand Down
2 changes: 1 addition & 1 deletion include/release-cycle.mmd
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ gantt
bugfix :active, python3.11, 2022-10-24,2027-10-01

section Python 3.12
features : python3.12, 2023-10-02,2028-10-01
feature : python3.12, 2023-10-02,2028-10-01
2 changes: 1 addition & 1 deletion versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Unsupported Versions
Status Key
==========

:features: new features, bugfixes, and security fixes are accepted.
:feature: new features, bugfixes, and security fixes are accepted.
:prerelease: feature fixes, bugfixes, and security fixes are accepted for the
upcoming feature release.
:bugfix: bugfixes and security fixes are accepted, new binaries are still
Expand Down
0