From ec146b9494602dd9bc18d4830a9bd6c69c59108a Mon Sep 17 00:00:00 2001 From: Jacob Lauzon Date: Thu, 21 Jul 2022 11:37:46 -0700 Subject: [PATCH] Drop Python 3.6 support in Storage packages --- sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md | 2 ++ sdk/storage/azure-storage-blob-changefeed/README.md | 2 +- sdk/storage/azure-storage-blob-changefeed/setup.py | 4 ++-- sdk/storage/azure-storage-blob/CHANGELOG.md | 2 ++ sdk/storage/azure-storage-blob/README.md | 2 +- sdk/storage/azure-storage-blob/setup.py | 3 +-- sdk/storage/azure-storage-file-datalake/CHANGELOG.md | 2 ++ sdk/storage/azure-storage-file-datalake/README.md | 2 +- sdk/storage/azure-storage-file-datalake/setup.py | 3 +-- sdk/storage/azure-storage-file-share/CHANGELOG.md | 2 ++ sdk/storage/azure-storage-file-share/README.md | 2 +- sdk/storage/azure-storage-file-share/setup.py | 3 +-- sdk/storage/azure-storage-queue/CHANGELOG.md | 2 ++ sdk/storage/azure-storage-queue/README.md | 2 +- sdk/storage/azure-storage-queue/setup.py | 3 +-- 15 files changed, 21 insertions(+), 15 deletions(-) diff --git a/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md b/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md index 5c83ac06e928..c6a0fcbe6b98 100644 --- a/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md @@ -2,6 +2,8 @@ ## 12.0.0b5 (Unreleased) +This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported. + ### Features Added ### Bugs Fixed diff --git a/sdk/storage/azure-storage-blob-changefeed/README.md b/sdk/storage/azure-storage-blob-changefeed/README.md index b037ffb68905..92c73e46fc7f 100644 --- a/sdk/storage/azure-storage-blob-changefeed/README.md +++ b/sdk/storage/azure-storage-blob-changefeed/README.md @@ -9,7 +9,7 @@ This preview package for Python enables users to get blob change feed events. Th ## 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. 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). * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an [Azure storage account](https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-quickstart-create-account) to use this package. diff --git a/sdk/storage/azure-storage-blob-changefeed/setup.py b/sdk/storage/azure-storage-blob-changefeed/setup.py index a5c08fc82a7b..afdabbeebff5 100644 --- a/sdk/storage/azure-storage-blob-changefeed/setup.py +++ b/sdk/storage/azure-storage-blob-changefeed/setup.py @@ -59,10 +59,10 @@ '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', ], zip_safe=False, @@ -73,7 +73,7 @@ package_data={ 'pytyped': ['py.typed'], }, - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "azure-storage-blob>=12.5.0,<13.0.0" ], diff --git a/sdk/storage/azure-storage-blob/CHANGELOG.md b/sdk/storage/azure-storage-blob/CHANGELOG.md index b546067cd9b1..487f189a149d 100644 --- a/sdk/storage/azure-storage-blob/CHANGELOG.md +++ b/sdk/storage/azure-storage-blob/CHANGELOG.md @@ -2,6 +2,8 @@ ## 12.14.0b1 (Unreleased) +This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported. + ### Features Added ### Bugs Fixed diff --git a/sdk/storage/azure-storage-blob/README.md b/sdk/storage/azure-storage-blob/README.md index ee70d64d139e..6cb56cdee021 100644 --- a/sdk/storage/azure-storage-blob/README.md +++ b/sdk/storage/azure-storage-blob/README.md @@ -15,7 +15,7 @@ Blob storage is ideal 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. 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). * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an [Azure storage account](https://docs.microsoft.com/azure/storage/common/storage-account-overview) to use this package. diff --git a/sdk/storage/azure-storage-blob/setup.py b/sdk/storage/azure-storage-blob/setup.py index f7f8c816bf62..c222488f7a3c 100644 --- a/sdk/storage/azure-storage-blob/setup.py +++ b/sdk/storage/azure-storage-blob/setup.py @@ -59,7 +59,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', @@ -75,7 +74,7 @@ 'tests.blob', 'tests.common' ]), - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "azure-core<2.0.0,>=1.23.1", "msrest>=0.6.21", diff --git a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md index cc7bbeebb708..c5546c2a0149 100644 --- a/sdk/storage/azure-storage-file-datalake/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-datalake/CHANGELOG.md @@ -2,6 +2,8 @@ ## 12.9.0b1 (Unreleased) +This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported. + ### Features Added ### Bugs Fixed diff --git a/sdk/storage/azure-storage-file-datalake/README.md b/sdk/storage/azure-storage-file-datalake/README.md index 73e4b46c70ca..8636e9940162 100644 --- a/sdk/storage/azure-storage-file-datalake/README.md +++ b/sdk/storage/azure-storage-file-datalake/README.md @@ -12,7 +12,7 @@ This preview package for Python includes ADLS Gen2 specific API support made ava ## 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. 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). * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an [Azure storage account](https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-quickstart-create-account) to use this package. diff --git a/sdk/storage/azure-storage-file-datalake/setup.py b/sdk/storage/azure-storage-file-datalake/setup.py index b36376c93520..5d3a1d9e576a 100644 --- a/sdk/storage/azure-storage-file-datalake/setup.py +++ b/sdk/storage/azure-storage-file-datalake/setup.py @@ -60,7 +60,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', @@ -74,7 +73,7 @@ 'azure.storage', 'tests', ]), - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "azure-core<2.0.0,>=1.23.1", "msrest>=0.6.21", diff --git a/sdk/storage/azure-storage-file-share/CHANGELOG.md b/sdk/storage/azure-storage-file-share/CHANGELOG.md index 6da9deb8e468..0e862987009a 100644 --- a/sdk/storage/azure-storage-file-share/CHANGELOG.md +++ b/sdk/storage/azure-storage-file-share/CHANGELOG.md @@ -2,6 +2,8 @@ ## 12.10.0b1 (Unreleased) +This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported. + ### Features Added ### Bugs Fixed diff --git a/sdk/storage/azure-storage-file-share/README.md b/sdk/storage/azure-storage-file-share/README.md index 6d68ce07cf95..3e5ecea49f34 100644 --- a/sdk/storage/azure-storage-file-share/README.md +++ b/sdk/storage/azure-storage-file-share/README.md @@ -12,7 +12,7 @@ Azure file shares can be used to: ## 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. 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). * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an [Azure storage account](https://docs.microsoft.com/azure/storage/common/storage-account-overview) to use this package. diff --git a/sdk/storage/azure-storage-file-share/setup.py b/sdk/storage/azure-storage-file-share/setup.py index bbe0792b7a35..e8dde5d9c767 100644 --- a/sdk/storage/azure-storage-file-share/setup.py +++ b/sdk/storage/azure-storage-file-share/setup.py @@ -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', 'Programming Language :: Python :: 3.9', @@ -62,7 +61,7 @@ 'azure.storage', 'tests', ]), - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "azure-core<2.0.0,>=1.23.1", "msrest>=0.6.21", diff --git a/sdk/storage/azure-storage-queue/CHANGELOG.md b/sdk/storage/azure-storage-queue/CHANGELOG.md index eec4854bb733..29b26de64538 100644 --- a/sdk/storage/azure-storage-queue/CHANGELOG.md +++ b/sdk/storage/azure-storage-queue/CHANGELOG.md @@ -2,6 +2,8 @@ ## 12.5.0b1 (Unreleased) +This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported. + ### Features Added ### Bugs Fixed diff --git a/sdk/storage/azure-storage-queue/README.md b/sdk/storage/azure-storage-queue/README.md index 135b0b023b2c..45ee1c044817 100644 --- a/sdk/storage/azure-storage-queue/README.md +++ b/sdk/storage/azure-storage-queue/README.md @@ -12,7 +12,7 @@ Common uses of Queue storage include: ## 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. 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). * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an [Azure storage account](https://docs.microsoft.com/azure/storage/common/storage-account-overview) to use this package. diff --git a/sdk/storage/azure-storage-queue/setup.py b/sdk/storage/azure-storage-queue/setup.py index 0b8ba7bed1db..ab758e143d27 100644 --- a/sdk/storage/azure-storage-queue/setup.py +++ b/sdk/storage/azure-storage-queue/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', @@ -65,7 +64,7 @@ 'tests.queue', 'tests.common' ]), - python_requires=">=3.6", + python_requires=">=3.7", install_requires=[ "azure-core<2.0.0,>=1.23.1", "msrest>=0.6.21",