build(deps-dev): bump mypy from 1.10.1 to 1.11.1 in /Tools (#122550)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
This commit is contained in:
dependabot[bot] 2024-08-05 09:03:14 +00:00 committed by GitHub
parent d0b92dd5ca
commit 5207adf228
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -545,7 +545,9 @@ def add_legacy_c_converter(
if not kwargs:
added_f = f
else:
added_f = functools.partial(f, **kwargs)
# type ignore due to a mypy regression :(
# https://github.com/python/mypy/issues/17646
added_f = functools.partial(f, **kwargs) # type: ignore[misc]
if format_unit:
legacy_converters[format_unit] = added_f
return f

View File

@ -1,6 +1,6 @@
# Requirements file for external linters and checks we run on
# Tools/clinic, Tools/cases_generator/, and Tools/peg_generator/ in CI
mypy==1.10.1
mypy==1.11.1
# needed for peg_generator:
types-psutil==6.0.0.20240621