From 5c8d379c8214d478199fbcdf6b5a8280c9df4716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= Date: Wed, 27 Sep 2023 16:38:50 +0200 Subject: [PATCH] mypy: force python 3.10 for static checking MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the version running in the CI right now; forcing it in mypy allows to detect errors in advance. Signed-off-by: Vincent Stehlé --- .mypy.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/.mypy.ini b/.mypy.ini index be0671c..df60a85 100644 --- a/.mypy.ini +++ b/.mypy.ini @@ -1,2 +1,3 @@ [mypy] strict = true +python_version = 3.10