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
Remove 3.5
  • Loading branch information
encukou committed Mar 13, 2025
commit 06ac26de4efbb59ceb4ba5456b5fd82eb18a90e0
4 changes: 2 additions & 2 deletions _tools/generate_release_cycle.py
6404
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ def __init__(self, limit_to_active=False, special_py27=False) -> None:
for version in self.versions.values()
if version["status"] != 'end-of-life'
)
if special_py27:
self.cutoff = min(self.cutoff, dt.date(2019, 8, 1))
self.versions = {
key: version
for key, version in self.versions.items()
if version["end_of_life_date"] >= self.cutoff
or (special_py27 and key == '2.7')
}
if special_py27:
self.cutoff = min(self.cutoff, dt.date(2019, 8, 1))
self.id_key='active'
else:
self.id_key='all'
Expand Down
0