[docs] doc: fix stale Python version and CI references across doc/#5
Draft
github-actions[bot] wants to merge 1 commit intomainfrom
Draft
[docs] doc: fix stale Python version and CI references across doc/#5github-actions[bot] wants to merge 1 commit intomainfrom
github-actions[bot] wants to merge 1 commit intomainfrom
Conversation
- doc/dev/tests.md: update Python 3.8 references to 3.9 to match actual minimum requirements (azure-core, azure-identity, azure-storage-blob all require >=3.9, and tool_usage_guide.md states the same). - doc/dev/packaging.md: update python_requires examples and classifiers from 3.8 to 3.9; also expand the old-package migration note to cover the 3.7/3.8 classifiers that should also be removed. - doc/dev/engineering_assumptions.md: remove stale Python 3.6 CI reference and setup.cfg/universal flag content that no longer reflects the repo's Python 3-only (3.9+) stance. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Reviewed all Markdown files under
doc/for inconsistencies with the actual source code and repository structure. Found and fixed three files where documentation still referred to Python 3.8 or 3.6 support, contradicting the real minimum requirement of Python 3.9 enforced by:sdk/core/azure-core/pyproject.toml→requires-python = ">=3.9"sdk/storage/azure-storage-blob→requires-python = ">=3.9"sdk/identity/azure-identity/pyproject.toml→requires-python = ">=3.9"eng/tools/azure-sdk-tools/pyproject.toml→python_requires=">=3.9"doc/tool_usage_guide.md(already correct) → "The monorepo requires a minimum ofpython 3.9"Changes
doc/dev/tests.mdPython38/python.exe py38_venv→Python39/python.exe py39_venv.doc/dev/packaging.mdpython_requiressnippet from">=3.8"→">=3.9".Programming Language :: Python :: 3.8classifier from the fullsetup.pyexample and updatedpython_requiresthere as well.python_requiresexample to">=3.9"and expanded the classifier removal note to include 3.7 and 3.8 (not just 3.5/3.6).doc/dev/engineering_assumptions.md[bdist_wheel] universal=1insetup.cfg— the repo is Python 3-only and theuniversalflag must not be set.universalis the correct state for all packages.Warning
The following domain was blocked by the firewall during workflow execution:
releaseassets.githubusercontent.comTo allow these domains, add them to the
network.allowedlist in your workflow frontmatter:See Network Configuration for more information.