From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 09:03:14 +0000 (+0000) Subject: build(deps-dev): bump mypy from 1.10.1 to 1.11.1 in /Tools (#122550) X-Git-Tag: v3.14.0a1~884 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5207adf228547273b0e8d0253c23c69b95d7fe11;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Tools/clinic/libclinic/converter.py b/Tools/clinic/libclinic/converter.py index 86853bb4fba2..2abf06dc4e89 100644 --- a/Tools/clinic/libclinic/converter.py +++ b/Tools/clinic/libclinic/converter.py @@ -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 diff --git a/Tools/requirements-dev.txt b/Tools/requirements-dev.txt index de8496a17b85..cbf4072b5000 100644 --- a/Tools/requirements-dev.txt +++ b/Tools/requirements-dev.txt @@ -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