docs: update quickstart Python version support to 3.10 and 3.11 - #467
Closed
HarshRajSinghania wants to merge 1 commit into
Closed
HarshRajSinghania wants to merge 1 commit into
HarshRajSinghania wants to merge 1 commit into
Conversation
The quickstart still said Python 3.8-3.10 were tested and 3.11 was unsupported. pyproject.toml and the project's current support goals list 3.10 and 3.11. Fixes chaoss#465
Contributor
|
Thanks for the enthusiasm with submitting a PR! unfortunately it seems like this PR is redundant with #466. I dont want to create a situation where there is a race to see who can apply the feedback first (the same feedback i gave to that PR applies to this one too), so I'll close this one. Thanks for contributing though! If youre looking for other ways to contribute, I invite you to join |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Update the Quickstart page so the documented Python versions match current project support.
Motivation
Fixes #465.
The live quickstart still said dependencies do not consistently support Python 3.11 and that Python 3.8–3.10 had been tested. That is out of date:
pyproject.tomlhasrequires-python = ">=3.10"and classifiers for 3.10 and 3.11Implementation
In
docs/source/quick-start.rst, replace the outdated version sentence with:No other files were changed.
Testing
docs/.requires-pythonand the Programming Language classifiers inpyproject.toml.