Skip to content

Commit d66655f

Browse files
authored
Merge branch 'main' into shem/add-page-iterator
2 parents 1d61709 + 5d21e6e commit d66655f

File tree

2 files changed

+27
-26
lines changed

2 files changed

+27
-26
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Build package
3333
run: python -m build
3434
- name: Publish package
35-
uses: pypa/gh-action-pypi-publish@2f6f737ca5f74c637829c0f5c3acd0e29ea5e8bf
35+
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450
3636
with:
3737
user: __token__
3838
password: ${{ secrets.PYPI_TOKEN }}

requirements-dev.txt

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
-i https://pypi.org/simple
22

3-
astroid==3.0.2 ; python_full_version >= '3.7.2'
3+
astroid==3.1.0 ; python_full_version >= '3.7.2'
44

55
async-generator==1.10 ; python_version >= '3.5'
66

77
asyncmock==0.4.2
88

99
attrs==23.2.0 ; python_version >= '3.7'
1010

11-
azure-core==1.29.7 ; python_version >= '3.7'
11+
azure-core==1.30.1 ; python_version >= '3.7'
1212

1313
azure-identity==1.15.0
1414

15-
build==1.0.3
15+
build==1.1.1
1616

1717
bumpver==2023.1129
1818

19-
certifi==2023.11.17 ; python_version >= '3.6'
19+
certifi==2024.2.2 ; python_version >= '3.6'
2020

2121
cffi==1.16.0 ; os_name == 'nt' and implementation_name != 'pypy'
2222

@@ -26,9 +26,9 @@ click==8.1.7 ; python_version >= '3.6'
2626

2727
colorama==0.4.6 ; os_name == 'nt'
2828

29-
coverage[toml]==7.4.1 ; python_version >= '3.7'
29+
coverage[toml]==7.4.4 ; python_version >= '3.7'
3030

31-
cryptography==42.0.1 ; python_version >= '3.7'
31+
cryptography==42.0.5 ; python_version >= '3.7'
3232

3333
dill==0.3.6 ; python_version < '3.11'
3434

@@ -52,21 +52,21 @@ mccabe==0.7.0 ; python_version >= '3.6'
5252

5353
mock==5.1.0 ; python_version >= '3.6'
5454

55-
msal==1.26.0
55+
msal==1.28.0
5656

5757
msal-extensions==1.1.0
5858

59-
mypy==1.8.0
59+
mypy==1.9.0
6060

6161
mypy-extensions==1.0.0 ; python_version >= '3.5'
6262

6363
outcome==1.3.0.post0 ; python_version >= '3.7'
6464

65-
packaging==23.2 ; python_version >= '3.7'
65+
packaging==24.0 ; python_version >= '3.7'
6666

6767
pathlib2==2.3.7.post1
6868

69-
platformdirs==4.1.0 ; python_version >= '3.7'
69+
platformdirs==4.2.0 ; python_version >= '3.7'
7070

7171
pluggy==1.4.0 ; python_version >= '3.7'
7272

@@ -76,11 +76,11 @@ pycparser==2.21
7676

7777
pyjwt[crypto]==2.8.0 ; python_version >= '3.7'
7878

79-
pylint==3.0.3
79+
pylint==3.1.0
8080

8181
pyproject-hooks==1.0.0 ; python_version >= '3.7'
8282

83-
pytest==8.0.0
83+
pytest==8.1.1
8484

8585
pytest-cov==4.1.0
8686

@@ -94,39 +94,40 @@ pywin32==306 ; platform_system == 'Windows'
9494

9595
requests==2.31.0 ; python_version >= '3.7'
9696

97-
setuptools==69.0.3
97+
setuptools==69.2.0
9898

9999
six==1.16.0 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
100100

101-
sniffio==1.3.0 ; python_version >= '3.7'
101+
sniffio==1.3.1 ; python_version >= '3.7'
102102

103103
sortedcontainers==2.4.0
104104

105105
toml==0.10.2
106106

107107
tomli==2.0.1 ; python_version < '3.11'
108108

109-
tomlkit==0.12.3 ; python_version >= '3.7'
109+
tomlkit==0.12.4 ; python_version >= '3.7'
110110

111-
trio==0.24.0
111+
trio==0.25.0
112112

113-
types-python-dateutil==2.8.19.20240106
113+
types-python-dateutil==2.9.0.20240316
114114

115-
typing-extensions==4.9.0 ; python_version >= '3.7'
116115
types-requests==2.31.0.20240125; python_version >= '3.7'
117116
urllib3==2.1.0 ; python_version >= '3.7'
117+
typing-extensions==4.10.0 ; python_version >= '3.7'
118+
118119

119120
wrapt==1.15.0 ; python_version < '3.11'
120121

121122
yapf==0.40.2
122123

123-
zipp==3.17.0 ; python_version >= '3.7'
124+
zipp==3.18.1 ; python_version >= '3.7'
124125

125126
aiohttp==3.9.3 ; python_version >= '3.6'
126127

127128
aiosignal==1.3.1 ; python_version >= '3.7'
128129

129-
anyio==4.2.0 ; python_version >= '3.7'
130+
anyio==4.3.0 ; python_version >= '3.7'
130131

131132
async-timeout==4.0.3 ; python_version >= '3.6'
132133

@@ -138,19 +139,19 @@ h2==4.1.0
138139

139140
hpack==4.0.0 ; python_full_version >= '3.6.1'
140141

141-
httpcore==1.0.2 ; python_version >= '3.7'
142+
httpcore==1.0.4 ; python_version >= '3.7'
142143

143-
httpx[http2]==0.26.0
144+
httpx[http2]==0.27.0
144145

145146
hyperframe==6.0.1 ; python_full_version >= '3.6.1'
146147

147-
microsoft-kiota-abstractions==1.1.0
148+
microsoft-kiota-abstractions==1.3.1
148149

149150
microsoft-kiota-authentication-azure==1.0.0
150151

151-
microsoft-kiota-http==1.2.1
152+
microsoft-kiota-http==1.3.1
152153

153-
multidict==6.0.4 ; python_version >= '3.7'
154+
multidict==6.0.5 ; python_version >= '3.7'
154155

155156
uritemplate==4.1.1 ; python_version >= '3.6'
156157

0 commit comments

Comments
 (0)