From 7de9855410d034b2b7624a057dbf7c3f58ee5328 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Thu, 21 Dec 2023 23:14:24 +0000 Subject: [PATCH] Bump mypy to 1.8.0 (#113385) --- Tools/clinic/clinic.py | 2 +- Tools/requirements-dev.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py index bf3199257f6..e8ba805bd53 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -5815,11 +5815,11 @@ class DSLParser: parameter_name = parameter.arg name, legacy, kwargs = self.parse_converter(parameter.annotation) + value: object if not default: if self.parameter_state is ParamState.OPTIONAL: fail(f"Can't have a parameter without a default ({parameter_name!r}) " "after a parameter with a default!") - value: Sentinels | Null if is_vararg: value = NULL kwargs.setdefault('c_default', "NULL") diff --git a/Tools/requirements-dev.txt b/Tools/requirements-dev.txt index 3a2e62f70bb..b89f86a35d6 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.7.1 +mypy==1.8.0 # needed for peg_generator: types-psutil==5.9.5.17