8000 Updated "Status of Python versions" page by nedbat · Pull Request #1531 · python/devguide · GitHub
[go: up one dir, main page]

Skip to content

U 8000 pdated "Status of Python versions" page #1531

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 32 commits into from
Mar 19, 2025
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
87837ba
Python version status: show when bugfix releases become security rele…
nedbat Mar 12, 2025
0f24453
Make them look all the same
encukou Mar 13, 2025
2926a88
Show EOL ones as red
encukou Mar 13, 2025
dc4f279
Two graphs
encukou Mar 13, 2025
8850c25
Remove unacceptable newline
encukou Mar 13, 2025
223f178
Join an unacceptably split line
encukou Mar 13, 2025
5813c1c
Hide the starts of EOL versions
encukou Mar 13, 2025
2cc3a35
Special-case 2.7
encukou Mar 13, 2025
06ac26d
Remove 3.5
encukou Mar 13, 2025
d2e56e6
Format
encukou Mar 13, 2025
3a4fe83
Put labels on top, if the mask doesn't work
encukou Mar 13, 2025
df95f8f
simplify the svg paths
nedbat Mar 13, 2025
583f4c5
Add more explanation to the Python versions Status key
nedbat Mar 17, 2025
e43873f
clarify what a feature fix is.
nedbat Mar 17, 2025
2bb7cd8
Update _tools/generate_release_cycle.py
nedbat Mar 17, 2025
e769654
Update _tools/generate_release_cycle.py
nedbat Mar 17, 2025
73c7d45
Update _tools/generate_release_cycle.py
nedbat Mar 17, 2025
b2975bc
Update _tools/generate_release_cycle.py
nedbat Mar 17, 2025
45a454b
Update _tools/generate_release_cycle.py
nedbat Mar 17, 2025
33b5f37
Apply suggestions from code review
nedbat Mar 17, 2025
3f36d68
3.13 gets two years of bug fixes, earlier gets 1.5 years
nedbat Mar 17, 2025
47df7c4
last changes from the review
nedbat Mar 17, 2025
80a44b7
use a consistent anchor for the full chart
nedbat Mar 18, 2025
584d48a
more tweaking of the phase descriptions
nedbat Mar 18, 2025
213f5fc
Use `height` consistently
encukou Mar 18, 2025
6ae8f9f
Clean up the path code
encukou Mar 18, 2025
70a2fe5
Remove the "shade" rectangle, keep left+right+border or a single rect
encukou Mar 18, 2025
38ad862
Use the same radius everywhere
encukou Mar 18, 2025
2ae3700
Rearrange comments/assignments
encukou Mar 18, 2025
5eb9243
No mask for active branches
encukou Mar 18, 2025
a83cd0f
Restore bold red color
encukou Mar 18, 2025
eb054b2
Update _tools/release_cycle_template.svg.jinja
encukou Mar 18, 2025
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
Update _tools/generate_release_cycle.py
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
  • Loading branch information
nedbat and hugovk authored Mar 17, 2025
commit 45a454bedaf409ce89da6f29cc1ef26dd1530afd
2 changes: 1 addition & 1 deletion _tools/generate_release_cycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __init__(self, *, limit_to_active=False, special_py27=False) -> None:
reverse=True,
)

# Set the row (y-coordinate) for the chart, to allow a gap between 2.7
# Set the row (Y coordinate) for the chart, to allow a gap between 2.7
# and the rest
y = len(self.sorted_versions) + (1 if special_py27 else 0)
for version in self.sorted_versions:
Expand Down
Loading
0