Skip to content

Commit 81ab258

Browse files
[Storage] Deprecated Support for Python 3.8 in Changefeed + Extensions Packages (#41542)
1 parent 4dde766 commit 81ab258

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
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.0b6 (Unreleased)
44

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

79

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.8 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).
12+
* Python 3.9 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://learn.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: 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.8',
6463
'Programming Language :: Python :: 3.9',
6564
'Programming Language :: Python :: 3.10',
6665
'Programming Language :: Python :: 3.11',
@@ -75,7 +74,7 @@
7574
package_data={
7675
'pytyped': ['py.typed'],
7776
},
78-
python_requires=">=3.8",
77+
python_requires=">=3.9",
7978
install_requires=[
8079
"azure-storage-blob>=12.19.1,<13.0.0"
8180
],

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This package contains a set of C-Extension modules intended to be used with the
44
## Getting started
55

66
### Prerequisites
7-
* Python 3.8 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).
7+
* Python 3.9 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).
88

99
### Install the package
1010
This package is not meant to be used standalone and is meant to accompany other Azure Storage Python SDK libraries. However it can be installed and used standalone as well.

sdk/storage/azure-storage-extensions/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ suppressed_skip_warnings = ["*"]
1616
requires = ["setuptools", "wheel", "cibuildwheel"]
1717

1818
[tool.cibuildwheel]
19-
build = ["cp38*", "pp38*", "pp39*", "pp310*"]
19+
build = ["cp39*", "pp39*", "pp310*"]
2020
test-requires = "pytest"
2121
test-command = "pytest {project}/tests"
2222
test-skip = "*-macosx_arm64"

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,14 @@ def get_tag(self):
4141
'Programming Language :: Python',
4242
"Programming Language :: Python :: 3 :: Only",
4343
'Programming Language :: Python :: 3',
44-
'Programming Language :: Python :: 3.8',
4544
'Programming Language :: Python :: 3.9',
4645
'Programming Language :: Python :: 3.10',
4746
'Programming Language :: Python :: 3.11',
4847
'Programming Language :: Python :: 3.12',
4948
'License :: OSI Approved :: MIT License',
5049
],
5150
zip_safe=False,
52-
python_requires=">=3.8",
51+
python_requires=">=3.9",
5352
ext_package='azure.storage.extensions',
5453
ext_modules=[
5554
Extension(

0 commit comments

Comments
 (0)