Skip to content

Commit e6f5da8

Browse files
simorenohlmazuel
andauthored
remove support for Python 3.7 as per new guidelines (#33728)
Co-authored-by: Laurent Mazuel <[email protected]>
1 parent d10e62d commit e6f5da8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/cosmos/azure-cosmos/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Release History
22

33
### 4.5.2b4 (Unreleased)
4+
This version and all future versions will require Python 3.8+.
45

56
#### Features Added
67
* Added **preview** support for Computed Properties on Python SDK (Must be enabled on the account level before it can be used). See [PR 33626](https://github.com/Azure/azure-sdk-for-python/pull/33626).

sdk/cosmos/azure-cosmos/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
"Programming Language :: Python",
6363
"Programming Language :: Python :: 3 :: Only",
6464
"Programming Language :: Python :: 3",
65-
"Programming Language :: Python :: 3.7",
6665
"Programming Language :: Python :: 3.8",
6766
"Programming Language :: Python :: 3.9",
6867
"Programming Language :: Python :: 3.10",
@@ -72,7 +71,7 @@
7271
],
7372
zip_safe=False,
7473
packages=find_packages(exclude=exclude_packages),
75-
python_requires=">=3.7",
74+
python_requires=">=3.8",
7675
install_requires=[
7776
"azure-core<2.0.0,>=1.25.0",
7877
"typing-extensions>=4.6.0",

0 commit comments

Comments
 (0)