Skip to content

Commit 6891eb6

Browse files
authored
Merge branch 'main' into chore/rename-daily-ci-pipeline
2 parents 23e22d2 + e95fa7b commit 6891eb6

7 files changed

Lines changed: 39 additions & 36 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/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ updates:
2222
flit:
2323
patterns:
2424
- "*flit*"
25+
other-dependencies:
26+
patterns:
27+
- "*"
2528
- package-ecosystem: github-actions
2629
directory: "/"
2730
schedule:

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Dependabot metadata
1919
id: metadata
20-
uses: dependabot/fetch-metadata@v3.0.0
20+
uses: dependabot/fetch-metadata@v3.1.0
2121
with:
2222
github-token: "${{ secrets.GITHUB_TOKEN }}"
2323

.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 }}

.github/workflows/release-please-gha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }}
3030

3131
- name: Release Please
32-
uses: googleapis/release-please-action@v4
32+
uses: googleapis/release-please-action@v5
3333
with:
3434
token: ${{ steps.app-token.outputs.token }}
3535
config-file: release-please-config.json

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]

requirements-dev.txt

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
aiohttp==3.13.4
1+
aiohttp==3.13.5
22
aiosignal==1.4.0
3-
anyio==4.12.0
3+
anyio==4.13.0
44
astroid==3.3.11
55
async-timeout==5.0.1
6-
attrs==25.4.0
7-
azure-core==1.38.0
8-
azure-identity==1.25.1
6+
attrs==26.1.0
7+
azure-core==1.41.0
8+
azure-identity==1.25.3
99
build==1.3.0
1010
bumpver==2025.1131
11-
certifi==2025.8.3
11+
certifi==2026.4.22
1212
cffi==2.0.0
1313
click==8.1.8
1414
colorama==0.4.6
15-
cryptography==46.0.7
15+
cryptography==48.0.0
1616
Deprecated==1.3.1
17-
dill==0.4.0
17+
dill==0.4.1
1818
docutils==0.22
1919
flit==3.12.0
2020
flit_core==3.12.0
@@ -25,52 +25,52 @@ hpack==4.1.0
2525
httpcore==1.0.9
2626
httpx==0.28.1
2727
hyperframe==6.1.0
28-
idna==3.10
28+
idna==3.15
2929
importlib-metadata==6.8.0
3030
isort==6.1.0
3131
lazy-object-proxy==1.12.0
3232
lexid==2021.1006
3333
looseversion==1.3.0
3434
mccabe==0.7.0
35-
microsoft-kiota-abstractions==1.9.7
36-
microsoft-kiota-authentication-azure==1.9.7
37-
microsoft-kiota-http==1.9.7
38-
microsoft-kiota-serialization-form==1.9.7
39-
microsoft-kiota-serialization-json==1.9.7
40-
microsoft-kiota-serialization-multipart==1.9.7
41-
microsoft-kiota-serialization-text==1.9.7
42-
msal==1.34.0
35+
microsoft-kiota-abstractions==1.10.1
36+
microsoft-kiota-authentication-azure==1.10.1
37+
microsoft-kiota-http==1.10.1
38+
microsoft-kiota-serialization-form==1.10.1
39+
microsoft-kiota-serialization-json==1.10.1
40+
microsoft-kiota-serialization-multipart==1.10.1
41+
microsoft-kiota-serialization-text==1.10.1
42+
msal==1.36.0
4343
msal-extensions==1.3.1
44-
msgraph-core==1.3.8
44+
msgraph-core==1.4.0
4545
multidict==6.7.1
46-
mypy==1.17.1
46+
mypy==1.19.1
4747
mypy-extensions==1.1.0
48-
opentelemetry-api==1.38.0
49-
opentelemetry-sdk==1.38.0
50-
opentelemetry-semantic-conventions==0.59b0
51-
packaging==25.0
48+
opentelemetry-api==1.42.0
49+
opentelemetry-sdk==1.42.0
50+
opentelemetry-semantic-conventions==0.63b0
51+
packaging==26.2
5252
pathlib2==2.3.7.post1
5353
platformdirs==4.4.0
5454
portalocker==2.10.1
5555
pycparser==2.23
56-
PyJWT==2.12.0
56+
PyJWT==2.12.1
5757
pylint==3.3.9
5858
pyproject_hooks==1.2.0
5959
python-dateutil==2.9.0.post0
60-
requests==2.32.5
60+
requests==2.33.0
6161
six==1.17.0
6262
sniffio==1.3.1
6363
std-uritemplate==2.0.0
6464
time-machine==2.19.0
6565
toml==0.10.2
66-
tomli==2.3.0
66+
tomli==2.4.1
6767
tomli_w==1.2.0
68-
tomlkit==0.13.3
68+
tomlkit==0.15.0
6969
typing_extensions==4.15.0
70-
tzdata==2025.2
70+
tzdata==2026.2
7171
uritemplate==4.2.0
7272
urllib3==2.6.3
73-
wrapt==2.0.1
73+
wrapt==2.1.2
7474
yapf==0.43.0
7575
yarl==1.20.1
7676
zipp==3.23.0

0 commit comments

Comments
 (0)