mirror of https://github.com/python/cpython
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:
parent
d0b92dd5ca
commit
5207adf228
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue