Skip to content

Commit ec469b2

Browse files
authored
[Core] Drop Python 3.8 support (#40831)
Signed-off-by: Paul Van Eck <[email protected]>
1 parent 400a359 commit ec469b2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

sdk/core/azure-core/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.33.1 (Unreleased)
3+
## 1.34.0 (Unreleased)
44

55
### Features Added
66

@@ -12,6 +12,8 @@
1212

1313
### Other Changes
1414

15+
- Python 3.8 is no longer supported. Please use Python version 3.9 or later.
16+
1517
## 1.33.0 (2025-04-03)
1618

1719
### Features Added

sdk/core/azure-core/azure/core/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "1.33.1"
12+
VERSION = "1.34.0"

sdk/core/azure-core/setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
"Programming Language :: Python",
5050
"Programming Language :: Python :: 3 :: Only",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.8",
5352
"Programming Language :: Python :: 3.9",
5453
"Programming Language :: Python :: 3.10",
5554
"Programming Language :: Python :: 3.11",
@@ -68,7 +67,7 @@
6867
package_data={
6968
"pytyped": ["py.typed"],
7069
},
71-
python_requires=">=3.8",
70+
python_requires=">=3.9",
7271
install_requires=[
7372
"requests>=2.21.0",
7473
"six>=1.11.0",

0 commit comments

Comments
 (0)