Skip to content

Commit f15adfa

Browse files
[PYTHON] Communication Identity | Dropped 3.7 support (Azure#34555)
* Removing python 3.7 support
1 parent f1127df commit f15adfa

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

sdk/communication/azure-communication-identity/CHANGELOG.md

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

1111
### Other Changes
1212

13+
- Python 3.7 is no longer supported. Please use Python version 3.8 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).
14+
1315
## 1.5.0 (2024-02-14)
1416

1517
### Features Added

sdk/communication/azure-communication-identity/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1414

1515
# Getting started
1616
### Prerequisites
17-
- Python 3.7 or later is required to use this package.
17+
- Python 3.8 or later is required to use this package.
1818
- You must have an [Azure subscription](https://azure.microsoft.com/free/)
1919
- 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.
2020
### Install the package

sdk/communication/azure-communication-identity/mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.7
2+
python_version = 3.8
33
warn_return_any = True
44
warn_unused_configs = True
55
ignore_missing_imports = True

sdk/communication/azure-communication-identity/setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# your package.
99

1010
# this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way
11-
# up from python 3.7. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging
11+
# up from python 3.8. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging
1212

1313
PACKAGE_NAME = "azure-communication-identity"
1414
PACKAGE_PPRINT_NAME = "Communication Identity Service"
@@ -49,8 +49,11 @@
4949
"Programming Language :: Python",
5050
"Programming Language :: Python :: 3 :: Only",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.7",
5352
"Programming Language :: Python :: 3.8",
53+
"Programming Language :: Python :: 3.9",
54+
"Programming Language :: Python :: 3.10",
55+
"Programming Language :: Python :: 3.11",
56+
"Programming Language :: Python :: 3.12",
5457
"License :: OSI Approved :: MIT License",
5558
],
5659
packages=find_packages(
@@ -65,7 +68,7 @@
6568
package_data={
6669
"pytyped": ["py.typed"],
6770
},
68-
python_requires=">=3.7",
71+
python_requires=">=3.8",
6972
install_requires=["msrest>=0.7.1", "azure-core<2.0.0,>=1.24.0"],
7073
extras_require={":python_version<'3.8'": ["typing-extensions"]},
7174
project_urls={

0 commit comments

Comments
 (0)