Skip to content

Commit fba82cb

Browse files
feat: drop Python 3.9 support
Agent-Logs-Url: https://github.com/microsoftgraph/msgraph-sdk-python-core/sessions/1c1c3c0f-5789-4889-8936-a38229018747 Co-authored-by: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com>
1 parent a6bf6fd commit fba82cb

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
max-parallel: 5
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2121

2222
steps:
2323
- uses: actions/checkout@v6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Microsoft Graph Core Python Client Library contains core classes used by [Mi
1212
1313
## Prerequisites
1414

15-
Python 3.9+
15+
Python 3.10+
1616

1717
This library doesn't support [older](https://devguide.python.org/versions/) versions of Python.
1818

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ dependencies = [
1616
"microsoft-kiota-http >=1.8.0,<2.0.0",
1717
"httpx[http2] >=0.23.0",
1818
]
19-
requires-python = ">=3.9"
19+
requires-python = ">=3.10"
2020
license = "MIT"
2121
license-files = ["LICENSE"]
2222
readme = "README.md"
2323
keywords = ["msgraph", "openAPI", "Microsoft", "Graph"]
2424
classifiers = [
2525
"Development Status :: 5 - Production/Stable",
26-
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)