diff --git a/sdk/formrecognizer/azure-ai-formrecognizer/CHANGELOG.md b/sdk/formrecognizer/azure-ai-formrecognizer/CHANGELOG.md index 2511ff8d8a08..3e28b6e7c552 100644 --- a/sdk/formrecognizer/azure-ai-formrecognizer/CHANGELOG.md +++ b/sdk/formrecognizer/azure-ai-formrecognizer/CHANGELOG.md @@ -9,7 +9,7 @@ ### Bugs Fixed ### Other Changes -- Python 2.7 and 3.6 are no longer supported in this release. Please use Python 3.7 or later. +- Python 2.7 is no longer supported in this release. Please use Python 3.6 or later. ## 3.2.0b2 (2021-11-09) diff --git a/sdk/formrecognizer/azure-ai-formrecognizer/README.md b/sdk/formrecognizer/azure-ai-formrecognizer/README.md index 5b1d4bf56ab6..40422f44f313 100644 --- a/sdk/formrecognizer/azure-ai-formrecognizer/README.md +++ b/sdk/formrecognizer/azure-ai-formrecognizer/README.md @@ -16,7 +16,7 @@ _Azure SDK Python packages support for Python 2.7 ended 01 January 2022. For mor ## Getting started ### Prerequisites -* Python 3.7 or later is required to use this package. +* Python 3.6 or later is required to use this package. * You must have an [Azure subscription][azure_subscription] and a [Cognitive Services or Form Recognizer resource][FR_or_CS_resource] to use this package. diff --git a/sdk/formrecognizer/azure-ai-formrecognizer/dev_requirements.txt b/sdk/formrecognizer/azure-ai-formrecognizer/dev_requirements.txt index bd0394c67b7b..0d7662bf370c 100644 --- a/sdk/formrecognizer/azure-ai-formrecognizer/dev_requirements.txt +++ b/sdk/formrecognizer/azure-ai-formrecognizer/dev_requirements.txt @@ -3,4 +3,4 @@ -e ../../cognitiveservices/azure-mgmt-cognitiveservices ../../core/azure-core -e ../../identity/azure-identity -aiohttp>=3.0; python_version >= '3.7' \ No newline at end of file +aiohttp>=3.0 \ No newline at end of file diff --git a/sdk/formrecognizer/azure-ai-formrecognizer/samples/README.md b/sdk/formrecognizer/azure-ai-formrecognizer/samples/README.md index 761b4bbcad44..6486084d36bc 100644 --- a/sdk/formrecognizer/azure-ai-formrecognizer/samples/README.md +++ b/sdk/formrecognizer/azure-ai-formrecognizer/samples/README.md @@ -71,7 +71,7 @@ All of these samples need the endpoint to your Form Recognizer resource ([instru Please see the samples [here][v3.0.0-samples-tag]. ## Prerequisites -* Python 3.7 or later is required to use this package +* Python 3.6 or later is required to use this package * You must have an [Azure subscription][azure_subscription] and an [Azure Form Recognizer account][azure_form_recognizer_account] to run these samples. diff --git a/sdk/formrecognizer/azure-ai-formrecognizer/setup.py b/sdk/formrecognizer/azure-ai-formrecognizer/setup.py index 3e3a0df07aab..00ea529d1475 100644 --- a/sdk/formrecognizer/azure-ai-formrecognizer/setup.py +++ b/sdk/formrecognizer/azure-ai-formrecognizer/setup.py @@ -49,6 +49,7 @@ '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', @@ -62,7 +63,7 @@ 'azure', 'azure.ai', ]), - python_requires=">=3.7", + python_requires=">=3.6", install_requires=[ "azure-core<2.0.0,>=1.13.0", "msrest>=0.6.21",