Skip to content

Commit e346676

Browse files
feat: drop Python 3.9 support
Agent-Logs-Url: https://github.com/microsoftgraph/msgraph-beta-sdk-python/sessions/24183764-30f8-4558-963c-7d67ccde60b3 Co-authored-by: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com>
1 parent 644e9ed commit e346676

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
{
44
"name": "Python 3",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
// "image": "mcr.microsoft.com/devcontainers/python:3.9-bookworm",
76
// "image": "mcr.microsoft.com/devcontainers/python:3.10-bookworm",
87
// "image": "mcr.microsoft.com/devcontainers/python:3.11-bookworm",
98
// "image": "mcr.microsoft.com/devcontainers/python:3.12-bookworm",

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
max-parallel: 5
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1919
steps:
2020
- uses: actions/checkout@v6
2121
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@ dependencies = [
1919
"msgraph_core >=1.3.1"
2020

2121
]
22-
requires-python = ">=3.9"
22+
requires-python = ">=3.10"
2323
license = "MIT"
2424
license-files = ["LICENSE"]
2525
readme = "README.md"
2626
keywords = ["msgraph", "openAPI", "Microsoft", "Graph", "beta"]
2727
classifiers = [
2828
"Development Status :: 5 - Production/Stable",
29-
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",
3231
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)