From 7164d52576dcf493be37e961d9e3c847bf542ea1 Mon Sep 17 00:00:00 2001 From: Krista Pratico Date: Mon, 1 Aug 2022 13:15:08 -0700 Subject: [PATCH] drop 3.6 in setup and docs (#25307) --- sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md | 3 +++ sdk/textanalytics/azure-ai-textanalytics/README.md | 2 +- sdk/textanalytics/azure-ai-textanalytics/samples/README.md | 2 +- sdk/textanalytics/azure-ai-textanalytics/setup.py | 3 +-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md b/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md index ef27a77b8286..ed8bb4a26ea0 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md +++ b/sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md @@ -23,6 +23,9 @@ ### 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). + + ## 5.2.0b4 (2022-05-18) Note that this is the first version of the client library that targets the Azure Cognitive Service for Language APIs which includes the existing text analysis and natural language processing features found in the Text Analytics client library. diff --git a/sdk/textanalytics/azure-ai-textanalytics/README.md b/sdk/textanalytics/azure-ai-textanalytics/README.md index 4d212e91d5d9..412cf1913346 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/README.md +++ b/sdk/textanalytics/azure-ai-textanalytics/README.md @@ -21,7 +21,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For ### Prerequisites -- Python 3.6 later is required to use this package. +- Python 3.7 later is required to use this package. - You must have an [Azure subscription][azure_subscription] and a [Cognitive Services or Language service resource][ta_or_cs_resource] to use this package. diff --git a/sdk/textanalytics/azure-ai-textanalytics/samples/README.md b/sdk/textanalytics/azure-ai-textanalytics/samples/README.md index 03ad5726a389..7ee2fb4b7c5a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/samples/README.md +++ b/sdk/textanalytics/azure-ai-textanalytics/samples/README.md @@ -36,7 +36,7 @@ These sample programs show common scenarios for the Text Analytics client's offe |[sample_analyze_healthcare_action.py][sample_analyze_healthcare_action] and [sample_analyze_healthcare_action_async.py][sample_analyze_healthcare_action_async]|Run a healthcare and PII analysis together| ## Prerequisites -* Python 3.6 or later is required to use this package +* Python 3.7 or later is required to use this package * You must have an [Azure subscription][azure_subscription] and an [Azure Language account][azure_language_account] to run these samples. diff --git a/sdk/textanalytics/azure-ai-textanalytics/setup.py b/sdk/textanalytics/azure-ai-textanalytics/setup.py index 682f61e380b0..f6b046c6306a 100644 --- a/sdk/textanalytics/azure-ai-textanalytics/setup.py +++ b/sdk/textanalytics/azure-ai-textanalytics/setup.py @@ -49,7 +49,6 @@ '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', @@ -64,7 +63,7 @@ 'azure', 'azure.ai', ]), - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "azure-core<2.0.0,>=1.23.0", "msrest>=0.6.21",