Skip to content

Commit 346c5e1

Browse files
authored
[KV] Drop 3.7 support (#33733)
1 parent 9881093 commit 346c5e1

File tree

12 files changed

+20
-16
lines changed

12 files changed

+20
-16
lines changed

sdk/keyvault/azure-keyvault-administration/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Bugs Fixed
1010

1111
### Other Changes
12+
- Python 3.7 is no longer supported. Please use Python version 3.8 or later.
1213

1314
## 4.4.0b2 (2023-11-03)
1415

sdk/keyvault/azure-keyvault-administration/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ create, manage, and deploy public and private SSL/TLS certificates
2424
## _Disclaimer_
2525

2626
_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691._
27-
_Python 3.7 or later is required to use this package. For more details, please refer to [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)._
27+
_Python 3.8 or later is required to use this package. For more details, please refer to [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)._
2828

2929
## Getting started
3030
### Install packages
@@ -38,7 +38,7 @@ authentication as demonstrated below.
3838

3939
### Prerequisites
4040
* An [Azure subscription][azure_sub]
41-
* Python 3.7 or later
41+
* Python 3.8 or later
4242
* An existing [Key Vault Managed HSM][managed_hsm]. If you need to create one, you can do so using the Azure CLI by following the steps in [this document][managed_hsm_cli].
4343

4444
### Authenticate the client

sdk/keyvault/azure-keyvault-administration/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +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",
5453
"Programming Language :: Python :: 3.9",
5554
"Programming Language :: Python :: 3.10",
5655
"Programming Language :: Python :: 3.11",
56+
"Programming Language :: Python :: 3.12",
5757
"License :: OSI Approved :: MIT License",
5858
],
5959
zip_safe=False,
@@ -66,7 +66,7 @@
6666
"azure.keyvault",
6767
]
6868
),
69-
python_requires=">=3.7",
69+
python_requires=">=3.8",
7070
install_requires=[
7171
"azure-common~=1.1",
7272
"azure-core<2.0.0,>=1.24.0",

sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Bugs Fixed
1010

1111
### Other Changes
12+
- Python 3.7 is no longer supported. Please use Python version 3.8 or later.
1213

1314
## 4.8.0b3 (2023-11-03)
1415

sdk/keyvault/azure-keyvault-certificates/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and other secrets
1919
## _Disclaimer_
2020

2121
_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_.
22-
_Python 3.7 or later is required to use this package. For more details, please refer to [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)._
22+
_Python 3.8 or later is required to use this package. For more details, please refer to [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)._
2323

2424
## Getting started
2525
### Install the package
@@ -33,7 +33,7 @@ authentication as demonstrated below.
3333

3434
### Prerequisites
3535
* An [Azure subscription][azure_sub]
36-
* Python 3.7 or later
36+
* Python 3.8 or later
3737
* An existing [Azure Key Vault][azure_keyvault]. If you need to create one, you can do so using the Azure CLI by following the steps in [this document][azure_keyvault_cli].
3838

3939
### Authenticate the client

sdk/keyvault/azure-keyvault-certificates/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +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",
5453
"Programming Language :: Python :: 3.9",
5554
"Programming Language :: Python :: 3.10",
5655
"Programming Language :: Python :: 3.11",
56+
"Programming Language :: Python :: 3.12",
5757
"License :: OSI Approved :: MIT License",
5858
],
5959
zip_safe=False,
@@ -66,7 +66,7 @@
6666
"azure.keyvault",
6767
]
6868
),
69-
python_requires=">=3.7",
69+
python_requires=">=3.8",
7070
install_requires=[
7171
"azure-common~=1.1",
7272
"azure-core<2.0.0,>=1.24.0",

sdk/keyvault/azure-keyvault-keys/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Bugs Fixed
1010

1111
### Other Changes
12+
- Python 3.7 is no longer supported. Please use Python version 3.8 or later.
1213

1314
## 4.9.0b3 (2023-11-03)
1415

sdk/keyvault/azure-keyvault-keys/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ create, manage, and deploy public and private SSL/TLS certificates
2222

2323
_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_.
2424

25-
_Python 3.7 or later is required to use this package. For more details, please refer to [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)._
25+
_Python 3.8 or later is required to use this package. For more details, please refer to [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)._
2626

2727
## Getting started
2828
### Install the package
@@ -35,7 +35,7 @@ pip install azure-keyvault-keys azure-identity
3535

3636
### Prerequisites
3737
* An [Azure subscription][azure_sub]
38-
* Python 3.7 or later
38+
* Python 3.8 or later
3939
* An existing [Azure Key Vault][azure_keyvault]. If you need to create one, you can do so using the Azure CLI by following the steps in [this document][azure_keyvault_cli].
4040
* If using Managed HSM, an existing [Key Vault Managed HSM][managed_hsm]. If you need to create a Managed HSM, you can do so using the Azure CLI by following the steps in [this document][managed_hsm_cli].
4141

sdk/keyvault/azure-keyvault-keys/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +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",
5453
"Programming Language :: Python :: 3.9",
5554
"Programming Language :: Python :: 3.10",
5655
"Programming Language :: Python :: 3.11",
56+
"Programming Language :: Python :: 3.12",
5757
"License :: OSI Approved :: MIT License",
5858
],
5959
zip_safe=False,
@@ -66,7 +66,7 @@
6666
"azure.keyvault",
6767
]
6868
),
69-
python_requires=">=3.7",
69+
python_requires=">=3.8",
7070
install_requires=[
7171
"azure-common~=1.1",
7272
"azure-core<2.0.0,>=1.24.0",

sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Bugs Fixed
1010

1111
### Other Changes
12+
- Python 3.7 is no longer supported. Please use Python version 3.8 or later.
1213

1314
## 4.8.0b2 (2023-11-03)
1415

0 commit comments

Comments
 (0)