Skip to content

Commit f7d8f73

Browse files
Merge pull request #1045 from microsoftgraph/copilot/feat-drop-support-3-9
feat: drop Python 3.9 support and add Python 3.14 support
2 parents 58a0d6a + 9c007ec commit f7d8f73

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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",
109
// "image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
1110
//"image": "mcr.microsoft.com/devcontainers/python:3.13-bookworm",
12-
"image": "mcr.microsoft.com/devcontainers/python:3.13-bullseye",
11+
//"image": "mcr.microsoft.com/devcontainers/python:3.13-bullseye",
12+
"image": "mcr.microsoft.com/devcontainers/python:3.14-bookworm",
1313

1414
"features": {
1515

.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", "3.14"]
1919
steps:
2020
- uses: actions/checkout@v6
2121
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ 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",
3332
"Programming Language :: Python :: 3.13",
33+
"Programming Language :: Python :: 3.14",
3434
]
3535

3636
[project.optional-dependencies]

0 commit comments

Comments
 (0)