Skip to content

Commit 0237ea4

Browse files
authored
[Key Vault] Drop Python 2 from metapackage (Azure#23354)
1 parent d7e9f1d commit 0237ea4

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

sdk/keyvault/azure-keyvault/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Release History
22

3+
## 4.2.0 (Unreleased)
4+
**Disclaimer**
5+
6+
This package and the `azure.keyvault` namespace does not contain code anymore. This package now installs three sub-packages instead:
7+
8+
* [azure-keyvault-certificates](https://pypi.org/project/azure-keyvault-certificates/)
9+
* [azure-keyvault-keys](https://pypi.org/project/azure-keyvault-keys/)
10+
* [azure-keyvault-secrets](https://pypi.org/project/azure-keyvault-secrets/)
11+
12+
All code needs to be adapted to use the new namespaces. See individual package readmes for details.
13+
14+
## Other Changes
15+
- Python 2.7 is no longer supported. Please use Python version 3.6 or later.
16+
317
## 4.1.0 (2020-04-10)
418
**Disclaimer**
519

sdk/keyvault/azure-keyvault/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ of packages that provide APIs for Key Vault operations:
1010
- [azure-keyvault-certificates v4.x](https://pypi.python.org/pypi/azure-keyvault-certificates)
1111

1212

13+
## _Disclaimer_
14+
15+
_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_
16+
17+
1318
## Install the package
1419
Install the Azure Key Vault client libraries for Python with [pip][pip]:
1520

sdk/keyvault/azure-keyvault/setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@
2727
classifiers=[
2828
"Development Status :: 5 - Production/Stable",
2929
'Programming Language :: Python',
30-
'Programming Language :: Python :: 2',
31-
'Programming Language :: Python :: 2.7',
30+
'Programming Language :: Python :: 3 :: Only',
3231
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.5',
3432
'Programming Language :: Python :: 3.6',
3533
'Programming Language :: Python :: 3.7',
3634
'Programming Language :: Python :: 3.8',
35+
'Programming Language :: Python :: 3.9',
36+
'Programming Language :: Python :: 3.10',
3737
'License :: OSI Approved :: MIT License',
3838
],
3939
zip_safe=False,
4040
install_requires=[
41-
'azure-keyvault-certificates~=4.1',
42-
'azure-keyvault-secrets~=4.1',
43-
'azure-keyvault-keys~=4.1',
41+
'azure-keyvault-certificates~=4.4',
42+
'azure-keyvault-secrets~=4.4',
43+
'azure-keyvault-keys~=4.5',
4444
],
4545
)

0 commit comments

Comments
 (0)