From 8e4c2515284e6632b9d589162ca39e291609d9fa Mon Sep 17 00:00:00 2001 From: Aigerim Beishenbekova Date: Thu, 21 Jul 2022 16:05:26 +0200 Subject: [PATCH] dropped 3.6 support --- sdk/communication/azure-communication-identity/CHANGELOG.md | 2 +- sdk/communication/azure-communication-identity/README.md | 2 +- .../azure-communication-identity/dev_requirements.txt | 2 +- sdk/communication/azure-communication-identity/setup.py | 5 ++--- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/sdk/communication/azure-communication-identity/CHANGELOG.md b/sdk/communication/azure-communication-identity/CHANGELOG.md index 21a328a70b82..79b3bd0e396e 100644 --- a/sdk/communication/azure-communication-identity/CHANGELOG.md +++ b/sdk/communication/azure-communication-identity/CHANGELOG.md @@ -16,7 +16,7 @@ ### Bugs Fixed ### Other Changes -- Python 2.7 is no longer supported. Please use Python version 3.6 or later. +- Python 2.7 is no longer supported. Please use Python version 3.7 or later. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy). ## 1.1.0b1 (2021-11-09) diff --git a/sdk/communication/azure-communication-identity/README.md b/sdk/communication/azure-communication-identity/README.md index a9d19124d9ad..e24255603b95 100644 --- a/sdk/communication/azure-communication-identity/README.md +++ b/sdk/communication/azure-communication-identity/README.md @@ -10,7 +10,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For # Getting started ### 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](https://azure.microsoft.com/free/) - A deployed Communication Services resource. You can use the [Azure Portal](https://docs.microsoft.com/azure/communication-services/quickstarts/create-communication-resource?tabs=windows&pivots=platform-azp) or the [Azure PowerShell](https://docs.microsoft.com/powershell/module/az.communication/new-azcommunicationservice) to set it up. ### Install the package diff --git a/sdk/communication/azure-communication-identity/dev_requirements.txt b/sdk/communication/azure-communication-identity/dev_requirements.txt index f7baddb46775..9733800699af 100644 --- a/sdk/communication/azure-communication-identity/dev_requirements.txt +++ b/sdk/communication/azure-communication-identity/dev_requirements.txt @@ -2,6 +2,6 @@ -e ../../identity/azure-identity ../../core/azure-core ../azure-mgmt-communication -aiohttp>=3.0; python_version >= '3.5' +aiohttp>=3.0 -e ../../../tools/azure-devtools parameterized>=0.7.3 \ No newline at end of file diff --git a/sdk/communication/azure-communication-identity/setup.py b/sdk/communication/azure-communication-identity/setup.py index 69fd8ee6a54d..687bac8e1672 100644 --- a/sdk/communication/azure-communication-identity/setup.py +++ b/sdk/communication/azure-communication-identity/setup.py @@ -8,7 +8,7 @@ # your package. # this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way -# up from python 3.6. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging +# up from python 3.7. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging PACKAGE_NAME = "azure-communication-identity" PACKAGE_PPRINT_NAME = "Communication Identity Service" @@ -48,7 +48,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', 'License :: OSI Approved :: MIT License', @@ -63,7 +62,7 @@ package_data={ 'pytyped': ['py.typed'], }, - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "msrest>=0.6.21", "azure-core<2.0.0,>=1.19.1"