diff --git a/sdk/cognitivelanguage/azure-ai-language-questionanswering/CHANGELOG.md b/sdk/cognitivelanguage/azure-ai-language-questionanswering/CHANGELOG.md index f82cf19347f1..909e06590023 100644 --- a/sdk/cognitivelanguage/azure-ai-language-questionanswering/CHANGELOG.md +++ b/sdk/cognitivelanguage/azure-ai-language-questionanswering/CHANGELOG.md @@ -9,6 +9,7 @@ ### Bugs Fixed ### Other Changes +* Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, see [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy). ## 1.1.0b2 (2022-07-19) diff --git a/sdk/cognitivelanguage/azure-ai-language-questionanswering/README.md b/sdk/cognitivelanguage/azure-ai-language-questionanswering/README.md index 016658d31125..c5f60cfffdae 100644 --- a/sdk/cognitivelanguage/azure-ai-language-questionanswering/README.md +++ b/sdk/cognitivelanguage/azure-ai-language-questionanswering/README.md @@ -14,7 +14,7 @@ _Azure SDK Python packages support for Python 2.7 ended 01 January 2022. For mor ### Prerequisites -- Python 3.6 or later is required to use this package. +- Python 3.7 or later is required to use this package. - An [Azure subscription][azure_subscription] - A Language Service resource diff --git a/sdk/cognitivelanguage/azure-ai-language-questionanswering/migration_guide.md b/sdk/cognitivelanguage/azure-ai-language-questionanswering/migration_guide.md index 4d79346f0b4b..4a9fc4bc833c 100644 --- a/sdk/cognitivelanguage/azure-ai-language-questionanswering/migration_guide.md +++ b/sdk/cognitivelanguage/azure-ai-language-questionanswering/migration_guide.md @@ -62,7 +62,7 @@ client = QuestionAnsweringClient( ### Async operations -The modern `azure-ai-language-question-answering` library includes a complete async API supported on Python 3.6+. To use it, you must first install an async transport, such as [aiohttp][aiohttp]. See [azure-core documentation][azure_core_transport] for more information. +The modern `azure-ai-language-question-answering` library includes a complete async API supported on Python 3.7+. To use it, you must first install an async transport, such as [aiohttp][aiohttp]. See [azure-core documentation][azure_core_transport] for more information. Async operations are available on async clients, which should be closed when they're no longer needed. Each async client is an async context manager and defines an async `close` method. For example: diff --git a/sdk/cognitivelanguage/azure-ai-language-questionanswering/samples/README.md b/sdk/cognitivelanguage/azure-ai-language-questionanswering/samples/README.md index cab3d570df20..2bb9f1ddf168 100644 --- a/sdk/cognitivelanguage/azure-ai-language-questionanswering/samples/README.md +++ b/sdk/cognitivelanguage/azure-ai-language-questionanswering/samples/README.md @@ -31,7 +31,7 @@ These sample programs show common scenarios for the QuestionAnswering client's o ### Prerequisites -* Python 3.6 or later is required to use this package. +* Python 3.7 or later is required to use this package. * An [Azure subscription][azure_subscription] * An existing Question Answering resource diff --git a/sdk/cognitivelanguage/azure-ai-language-questionanswering/setup.py b/sdk/cognitivelanguage/azure-ai-language-questionanswering/setup.py index 538aba7cf930..828090aa5b8f 100644 --- a/sdk/cognitivelanguage/azure-ai-language-questionanswering/setup.py +++ b/sdk/cognitivelanguage/azure-ai-language-questionanswering/setup.py @@ -40,14 +40,13 @@ "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "License :: OSI Approved :: MIT License", ], - python_requires=">=3.6", + python_requires=">=3.7", zip_safe=False, packages=find_packages(exclude=[ 'tests',