-
Notifications
You must be signed in to change notification settings - Fork 615
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
Add a page about the status of the Python releases #2066
Comments
+1 for this. https://www.php.net/supported-versions.php is a good reference - on the main website, targeted to end-users, and is not versioned. Ideally, all of the information collected at https://endoflife.date/python should be available under a single page at python.org. |
@captn3m0, would it be fine for you if the source is one (or two) csv in the devguide repo or are you planning to scrape/parse the final page at python.org? |
Specifically for endoflife.date - the information could be anywhere - we only scrape release dates currently via tags on the cypthon repo. For EOL information, we're okay tracking changes to the CSV or website. However, keeping this information in two places wouldn't be advisable - having a single canonical page for support information at python.org would be ideal. The devguide could just link here instead.
To clarify a bit, here's what I mean by all information:
|
@captn3m0: we now have https://devguide.python.org/versions/ which includes both the supported and no longer supported versions. As part of python/devguide#884, I'm still planning to replace both tables with two CSVs (or one that gets split while rendering the docs through an extension). |
All the current (and proposed) devguide pages are missing patch numbers for supported versions. endoflifenotes down supported versions (3.10.5, 3.9.13, 3.8.13, 3.7.13) while the latter only notes supported branches. Using complete version numbers here is important, see point 2 in our recommendations here |
Is your feature request related to a problem? Please describe.
In endoflife-date/endoflife.date#711 it was pointed out that it's not easy for users to find information about the status of the Python releases. The devguide has some information, but it's targeted to developers and it's not easy to find. It was suggested to add a page to python.org that lists the current status of the Python releases.
Describe the solution you'd like
I'm currently working on a PR that will create two machine-parsable
csv
s that list the status of the Python branches:In order to avoid having multiple files that need to be updated whenever a new version is released, I suggest to use those files as the authoritative source, and use them to generate the content of this new python.org page.
Describe alternatives you've considered
Additional context
If this feature request is accepted, I will use the feedback to update the PR mentioned above.
The text was updated successfully, but these errors were encountered: