Skip to content

Commit 4649826

Browse files
Drop Python 3.6 support in Storage packages (Azure#25347)
1 parent cfd6189 commit 4649826

File tree

15 files changed

+21
-15
lines changed

15 files changed

+21
-15
lines changed

sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 12.0.0b5 (Unreleased)
44

5+
This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported.
6+
57
### Features Added
68

79
### Bugs Fixed

sdk/storage/azure-storage-blob-changefeed/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This preview package for Python enables users to get blob change feed events. Th
99
## Getting started
1010

1111
### Prerequisites
12-
* Python 3.6 or later is required to use this package.
12+
* 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).
1313
* You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
1414
[Azure storage account](https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-quickstart-create-account) to use this package.
1515

sdk/storage/azure-storage-blob-changefeed/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@
5959
'Programming Language :: Python',
6060
"Programming Language :: Python :: 3 :: Only",
6161
'Programming Language :: Python :: 3',
62-
'Programming Language :: Python :: 3.6',
6362
'Programming Language :: Python :: 3.7',
6463
'Programming Language :: Python :: 3.8',
6564
'Programming Language :: Python :: 3.9',
65+
'Programming Language :: Python :: 3.10',
6666
'License :: OSI Approved :: MIT License',
6767
],
6868
zip_safe=False,
@@ -73,7 +73,7 @@
7373
package_data={
7474
'pytyped': ['py.typed'],
7575
},
76-
python_requires=">=3.6",
76+
python_requires=">=3.7",
7777
install_requires=[
7878
"azure-storage-blob>=12.5.0,<13.0.0"
7979
],

sdk/storage/azure-storage-blob/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 12.14.0b1 (Unreleased)
44

5+
This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported.
6+
57
### Features Added
68

79
### Bugs Fixed

sdk/storage/azure-storage-blob/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Blob storage is ideal for:
1515
## Getting started
1616

1717
### Prerequisites
18-
* Python 3.6 or later is required to use this package.
18+
* 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).
1919
* You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
2020
[Azure storage account](https://docs.microsoft.com/azure/storage/common/storage-account-overview) to use this package.
2121

sdk/storage/azure-storage-blob/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
'Programming Language :: Python',
6060
"Programming Language :: Python :: 3 :: Only",
6161
'Programming Language :: Python :: 3',
62-
'Programming Language :: Python :: 3.6',
6362
'Programming Language :: Python :: 3.7',
6463
'Programming Language :: Python :: 3.8',
6564
'Programming Language :: Python :: 3.9',
@@ -75,7 +74,7 @@
7574
'tests.blob',
7675
'tests.common'
7776
]),
78-
python_requires=">=3.6",
77+
python_requires=">=3.7",
7978
install_requires=[
8079
"azure-core<2.0.0,>=1.23.1",
8180
"msrest>=0.6.21",

sdk/storage/azure-storage-file-datalake/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 12.9.0b1 (Unreleased)
44

5+
This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported.
6+
57
### Features Added
68

79
### Bugs Fixed

sdk/storage/azure-storage-file-datalake/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This preview package for Python includes ADLS Gen2 specific API support made ava
1212
## Getting started
1313

1414
### Prerequisites
15-
* Python 3.6 or later is required to use this package.
15+
* 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).
1616
* You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
1717
[Azure storage account](https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-quickstart-create-account) to use this package.
1818

sdk/storage/azure-storage-file-datalake/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
'Programming Language :: Python',
6161
"Programming Language :: Python :: 3 :: Only",
6262
'Programming Language :: Python :: 3',
63-
'Programming Language :: Python :: 3.6',
6463
'Programming Language :: Python :: 3.7',
6564
'Programming Language :: Python :: 3.8',
6665
'Programming Language :: Python :: 3.9',
@@ -74,7 +73,7 @@
7473
'azure.storage',
7574
'tests',
7675
]),
77-
python_requires=">=3.6",
76+
python_requires=">=3.7",
7877
install_requires=[
7978
"azure-core<2.0.0,>=1.23.1",
8079
"msrest>=0.6.21",

sdk/storage/azure-storage-file-share/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 12.10.0b1 (Unreleased)
44

5+
This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported.
6+
57
### Features Added
68

79
### Bugs Fixed

0 commit comments

Comments
 (0)