Skip to content

Commit d4c3ae1

Browse files
authored
Merge branch 'main' into add-python-3.13-support
2 parents 4098684 + af681d2 commit d4c3ae1

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.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@v2.2.0
20+
uses: dependabot/fetch-metadata@v2.3.0
2121
with:
2222
github-token: "${{ secrets.GITHUB_TOKEN }}"
2323

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Build package
3030
run: python -m build
3131
- name: Publish package
32-
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70
32+
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
3333
with:
3434
user: __token__
3535
password: ${{ secrets.PYPI_TOKEN }}

.pylintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,9 @@ max-statements=50
468468
# Minimum number of public methods for a class (see R0903).
469469
min-public-methods=2
470470

471+
# Maximum number of parameters allowed for a method (see R0917).
472+
max-positional-arguments=6
473+
471474

472475
[IMPORTS]
473476

requirements-dev.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ async-generator==1.10 ; python_version >= '3.5'
44

55
asyncmock==0.4.2
66

7-
attrs==24.3.0 ; python_version >= '3.7'
7+
attrs==25.1.0 ; python_version >= '3.7'
88

99
azure-core==1.32.0 ; python_version >= '3.7'
1010

@@ -38,7 +38,7 @@ importlib-metadata==7.1.0 ; python_version >= '3.7'
3838

3939
iniconfig==2.0.0 ; python_version >= '3.7'
4040

41-
isort==5.13.2
41+
isort==6.0.0
4242

4343
lazy-object-proxy==1.10.0 ; python_version >= '3.7'
4444

@@ -74,7 +74,7 @@ pycparser==2.22
7474

7575
pyjwt[crypto]==2.9.0 ; python_version >= '3.7'
7676

77-
pylint==3.3.3
77+
pylint==3.3.4
7878

7979
pyproject-hooks==1.2.0 ; python_version >= '3.7'
8080

@@ -137,26 +137,26 @@ h11==0.14.0 ; python_version >= '3.7'
137137

138138
h2==4.1.0
139139

140-
hpack==4.0.0 ; python_full_version >= '3.6.1'
140+
hpack==4.1.0 ; python_full_version >= '3.6.1'
141141

142142
httpcore==1.0.7 ; python_version >= '3.7'
143143

144144
httpx[http2]==0.28.1
145145

146-
hyperframe==6.0.1 ; python_full_version >= '3.6.1'
146+
hyperframe==6.1.0 ; python_full_version >= '3.6.1'
147147

148-
microsoft-kiota-abstractions==1.8.0
148+
microsoft-kiota-abstractions==1.9.0
149149

150-
microsoft-kiota-authentication-azure==1.8.0
150+
microsoft-kiota-authentication-azure==1.9.0
151151

152-
microsoft-kiota-http==1.8.0
152+
microsoft-kiota-http==1.9.0
153153

154154
multidict==6.1.0 ; python_version >= '3.7'
155155

156156
uritemplate==4.1.1 ; python_version >= '3.6'
157157

158158
yarl==1.15.2 ; python_version >= '3.7'
159159

160-
deprecated==1.2.15
160+
deprecated==1.2.18
161161

162162
types-Deprecated==1.2.15.20241117

0 commit comments

Comments
 (0)