Skip to content

Commit db6ae63

Browse files
Bump mypy from 1.16.1 to 1.17.0 (#11315)
Bumps [mypy](https://github.com/python/mypy) from 1.16.1 to 1.17.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's changelog</a>.</em></p> <blockquote> <h1>Mypy Release Notes</h1> <h2>Next Release</h2> <h2>Mypy 1.17</h2> <p>We’ve just uploaded mypy 1.17 to the Python Package Index (<a href="https://pypi.org/project/mypy/">PyPI</a>). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:</p> <pre><code>python3 -m pip install -U mypy </code></pre> <p>You can read the full documentation for this release on <a href="http://mypy.readthedocs.io">Read the Docs</a>.</p> <h3>Optionally Check That Match Is Exhaustive</h3> <p>Mypy can now optionally generate an error if a match statement does not match exhaustively, without having to use <code>assert_never(...)</code>. Enable this by using <code>--enable-error-code exhaustive-match</code>.</p> <p>Example:</p> <pre lang="python"><code># mypy: enable-error-code=exhaustive-match <p>import enum</p> <p>class Color(enum.Enum): RED = 1 BLUE = 2</p> <p>def show_color(val: Color) -&gt; None: # error: Unhandled case for values of type &quot;Literal[Color.BLUE]&quot; match val: case Color.RED: print(&quot;red&quot;) </code></pre></p> <p>This feature was contributed by Donal Burns (PR <a href="https://redirect.github.com/python/mypy/pull/19144">19144</a>).</p> <h3>Further Improvements to Attribute Resolution</h3> <p>This release includes additional improvements to how attribute types and kinds are resolved. These fix many bugs and overall improve consistency.</p> <ul> <li>Handle corner case: protocol/class variable/descriptor (Ivan Levkivskyi, PR <a href="https://redirect.github.com/python/mypy/pull/19277">19277</a>)</li> <li>Fix a few inconsistencies in protocol/type object interactions (Ivan Levkivskyi, PR <a href="https://redirect.github.com/python/mypy/pull/19267">19267</a>)</li> <li>Refactor/unify access to static attributes (Ivan Levkivskyi, PR <a href="https://redirect.github.com/python/mypy/pull/19254">19254</a>)</li> <li>Remove inconsistencies in operator handling (Ivan Levkivskyi, PR <a href="https://redirect.github.com/python/mypy/pull/19250">19250</a>)</li> <li>Make protocol subtyping more consistent (Ivan Levkivskyi, PR <a href="https://redirect.github.com/python/mypy/pull/18943">18943</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/mypy/commit/0260991f6b055110c3df36bd5539d4f4489bf153"><code>0260991</code></a> Update version string</li> <li><a href="https://github.com/python/mypy/commit/3901aa2f9523ce55e08d94c1716028d840398753"><code>3901aa2</code></a> Updates to 1.17 changelog (<a href="https://redirect.github.com/python/mypy/issues/19436">#19436</a>)</li> <li><a href="https://github.com/python/mypy/commit/7d133961a7e759aab84223bf8038b9489daaa93c"><code>7d13396</code></a> Initial changelog for 1.17 release (<a href="https://redirect.github.com/python/mypy/issues/19427">#19427</a>)</li> <li><a href="https://github.com/python/mypy/commit/a182dec997b418b925fe0c28575c50debba0bb3a"><code>a182dec</code></a> Combine the revealed types of multiple iteration steps in a more robust manne...</li> <li><a href="https://github.com/python/mypy/commit/ab4fd57d45b7f81cf281b17b7d3697ac9f79bc15"><code>ab4fd57</code></a> Improve the handling of &quot;iteration dependent&quot; errors and notes in finally cla...</li> <li><a href="https://github.com/python/mypy/commit/09ba1f6488b3e8d91c5204839421c61c306ff252"><code>09ba1f6</code></a> [mypyc] Fix exception swallowing in async try/finally blocks with await (<a href="https://redirect.github.com/python/mypy/issues/19353">#19353</a>)</li> <li><a href="https://github.com/python/mypy/commit/5c65e330b0e4a188d68c04715a90e1f7d9c18df6"><code>5c65e33</code></a> [mypyc] Fix AttributeError in async try/finally with mixed return paths (<a href="https://redirect.github.com/python/mypy/issues/19361">#19361</a>)</li> <li><a href="https://github.com/python/mypy/commit/934ec50744c766522329c604c6908a6ed05affd6"><code>934ec50</code></a> Lessen dmypy suggest path limitations for Windows machines (<a href="https://redirect.github.com/python/mypy/issues/19337">#19337</a>)</li> <li><a href="https://github.com/python/mypy/commit/a4801f928aaadb19f9893fe45af8e69ab6b509d0"><code>a4801f9</code></a> Type ignore comments erroneously marked as unused by dmypy (<a href="https://redirect.github.com/python/mypy/issues/15043">#15043</a>)</li> <li><a href="https://github.com/python/mypy/commit/c3bfa0d6f3ac3cea78cc497a3c44002ea46437a1"><code>c3bfa0d</code></a> Handle corner case: protocol vs classvar vs descriptor (<a href="https://redirect.github.com/python/mypy/issues/19277">#19277</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python/mypy/compare/v1.16.1...v1.17.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mypy&package-manager=pip&previous-version=1.16.1&new-version=1.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6d1f0ec commit db6ae63

File tree

4 files changed

+124
-124
lines changed

4 files changed

+124
-124
lines changed

requirements/constraints.txt

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@
66
#
77
aiodns==3.5.0
88
# via
9-
# -r requirements/lint.in
10-
# -r requirements/runtime-deps.in
9+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
10+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
1111
aiohappyeyeballs==2.6.1
12-
# via -r requirements/runtime-deps.in
12+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
1313
aiohttp-theme==0.1.7
14-
# via -r requirements/doc.in
14+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/doc.in
1515
aiosignal==1.4.0
16-
# via -r requirements/runtime-deps.in
16+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
1717
alabaster==1.0.0
1818
# via sphinx
1919
annotated-types==0.7.0
2020
# via pydantic
2121
async-timeout==5.0.1 ; python_version < "3.11"
2222
# via
23-
# -r requirements/runtime-deps.in
23+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
2424
# valkey
2525
attrs==25.3.0
26-
# via -r requirements/runtime-deps.in
26+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
2727
babel==2.17.0
2828
# via sphinx
2929
blockbuster==1.5.24
3030
# via
31-
# -r requirements/lint.in
32-
# -r requirements/test.in
31+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
32+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
3333
brotli==1.1.0 ; platform_python_implementation == "CPython"
34-
# via -r requirements/runtime-deps.in
34+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
3535
build==1.2.2.post1
3636
# via pip-tools
3737
certifi==2025.7.14
@@ -46,7 +46,7 @@ cfgv==3.4.0
4646
charset-normalizer==3.4.2
4747
# via requests
4848
cherry-picker==2.5.0
49-
# via -r requirements/dev.in
49+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/dev.in
5050
click==8.1.8
5151
# via
5252
# cherry-picker
@@ -56,14 +56,14 @@ click==8.1.8
5656
# wait-for-it
5757
coverage==7.9.2
5858
# via
59-
# -r requirements/test.in
59+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
6060
# pytest-cov
6161
cryptography==45.0.5
6262
# via
6363
# pyjwt
6464
# trustme
6565
cython==3.1.2
66-
# via -r requirements/cython.in
66+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/cython.in
6767
distlib==0.3.9
6868
# via virtualenv
6969
docutils==0.21.2
@@ -78,16 +78,16 @@ forbiddenfruit==0.1.4
7878
# via blockbuster
7979
freezegun==1.5.3
8080
# via
81-
# -r requirements/lint.in
82-
# -r requirements/test.in
81+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
82+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
8383
frozenlist==1.7.0
8484
# via
85-
# -r requirements/runtime-deps.in
85+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
8686
# aiosignal
8787
gidgethub==5.4.0
8888
# via cherry-picker
8989
gunicorn==23.0.0
90-
# via -r requirements/base.in
90+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/base.in
9191
identify==2.6.12
9292
# via pre-commit
9393
idna==3.3
@@ -101,8 +101,8 @@ iniconfig==2.1.0
101101
# via pytest
102102
isal==1.7.2
103103
# via
104-
# -r requirements/lint.in
105-
# -r requirements/test.in
104+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
105+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
106106
jinja2==3.1.6
107107
# via
108108
# sphinx
@@ -115,13 +115,13 @@ mdurl==0.1.2
115115
# via markdown-it-py
116116
multidict==6.6.3
117117
# via
118-
# -r requirements/multidict.in
119-
# -r requirements/runtime-deps.in
118+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/multidict.in
119+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
120120
# yarl
121-
mypy==1.16.1 ; implementation_name == "cpython"
121+
mypy==1.17.0 ; implementation_name == "cpython"
122122
# via
123-
# -r requirements/lint.in
124-
# -r requirements/test.in
123+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
124+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
125125
mypy-extensions==1.1.0
126126
# via mypy
127127
nodeenv==1.9.1
@@ -135,23 +135,23 @@ packaging==25.0
135135
pathspec==0.12.1
136136
# via mypy
137137
pip-tools==7.4.1
138-
# via -r requirements/dev.in
138+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/dev.in
139139
pkgconfig==1.5.5
140-
# via -r requirements/test.in
140+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
141141
platformdirs==4.3.8
142142
# via virtualenv
143143
pluggy==1.6.0
144144
# via
145145
# pytest
146146
# pytest-cov
147147
pre-commit==4.2.0
148-
# via -r requirements/lint.in
148+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
149149
propcache==0.3.2
150150
# via
151-
# -r requirements/runtime-deps.in
151+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
152152
# yarl
153153
proxy-py==2.4.10
154-
# via -r requirements/test.in
154+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
155155
pycares==4.9.0
156156
# via aiodns
157157
pycparser==2.22
@@ -177,34 +177,34 @@ pyproject-hooks==1.2.0
177177
# pip-tools
178178
pytest==8.4.1
179179
# via
180-
# -r requirements/lint.in
181-
# -r requirements/test.in
180+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
181+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
182182
# pytest-codspeed
183183
# pytest-cov
184184
# pytest-mock
185185
# pytest-xdist
186186
pytest-codspeed==4.0.0
187187
# via
188-
# -r requirements/lint.in
189-
# -r requirements/test.in
188+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
189+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
190190
pytest-cov==6.2.1
191-
# via -r requirements/test.in
191+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
192192
pytest-mock==3.14.1
193193
# via
194-
# -r requirements/lint.in
195-
# -r requirements/test.in
194+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
195+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
196196
pytest-xdist==3.8.0
197-
# via -r requirements/test.in
197+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
198198
python-dateutil==2.9.0.post0
199199
# via freezegun
200200
python-on-whales==0.77.0
201201
# via
202-
# -r requirements/lint.in
203-
# -r requirements/test.in
202+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
203+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
204204
pyyaml==6.0.2
205205
# via pre-commit
206206
re-assert==1.1.0
207-
# via -r requirements/test.in
207+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
208208
regex==2024.11.6
209209
# via re-assert
210210
requests==2.32.4
@@ -215,16 +215,16 @@ requests==2.32.4
215215
rich==14.0.0
216216
# via pytest-codspeed
217217
setuptools-git==1.2
218-
# via -r requirements/test.in
218+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
219219
six==1.17.0
220220
# via python-dateutil
221221
slotscheck==0.19.1
222-
# via -r requirements/lint.in
222+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
223223
snowballstemmer==3.0.1
224224
# via sphinx
225225
sphinx==8.1.3
226226
# via
227-
# -r requirements/doc.in
227+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/doc.in
228228
# sphinxcontrib-spelling
229229
# sphinxcontrib-towncrier
230230
sphinxcontrib-applehelp==2.0.0
@@ -240,9 +240,9 @@ sphinxcontrib-qthelp==2.0.0
240240
sphinxcontrib-serializinghtml==2.0.0
241241
# via sphinx
242242
sphinxcontrib-spelling==8.0.1 ; platform_system != "Windows"
243-
# via -r requirements/doc-spelling.in
243+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/doc-spelling.in
244244
sphinxcontrib-towncrier==0.5.0a0
245-
# via -r requirements/doc.in
245+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/doc.in
246246
stamina==25.1.0
247247
# via cherry-picker
248248
tenacity==9.1.2
@@ -260,12 +260,12 @@ tomli==2.2.1
260260
# towncrier
261261
towncrier==24.8.0
262262
# via
263-
# -r requirements/doc.in
263+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/doc.in
264264
# sphinxcontrib-towncrier
265265
trustme==1.2.1 ; platform_machine != "i686"
266266
# via
267-
# -r requirements/lint.in
268-
# -r requirements/test.in
267+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
268+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
269269
typing-extensions==4.14.1
270270
# via
271271
# aiosignal
@@ -285,26 +285,26 @@ urllib3==2.5.0
285285
# via requests
286286
uvloop==0.21.0 ; platform_system != "Windows"
287287
# via
288-
# -r requirements/base.in
289-
# -r requirements/lint.in
288+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/base.in
289+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
290290
valkey==6.1.0
291-
# via -r requirements/lint.in
291+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
292292
virtualenv==20.31.2
293293
# via pre-commit
294294
wait-for-it==2.3.0
295-
# via -r requirements/test.in
295+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
296296
wheel==0.45.1
297297
# via pip-tools
298298
yarl==1.20.1
299-
# via -r requirements/runtime-deps.in
299+
# via -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
300300
zlib-ng==0.5.1
301301
# via
302-
# -r requirements/lint.in
303-
# -r requirements/test.in
302+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
303+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/test.in
304304
zstandard==0.23.0 ; implementation_name == "cpython"
305305
# via
306-
# -r requirements/lint.in
307-
# -r requirements/runtime-deps.in
306+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/lint.in
307+
# -r /home/dependabot/dependabot-updater/tmp/20250715-1333-v8vdn6/dependabot_20250715-1333-nl1p4c/requirements/runtime-deps.in
308308

309309
# The following packages are considered to be unsafe in a requirements file:
310310
pip==25.1.1

0 commit comments

Comments
 (0)