From 8428ca6072b3e21e329ef243054248fa450c9e4f Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Fri, 24 Dec 2021 15:02:52 +0100 Subject: [PATCH] mypy cfg: set minimum python version to 3.8 to allow pytato to pass --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 183d7a9..b24271f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,7 +9,8 @@ multiline-quotes = """ # enable-flake8-bugbear [mypy] -python_version = 3.6 +# it reads pytato code, and pytato is 3.8+ +python_version = 3.8 warn_unused_ignores = True [mypy-islpy] -- GitLab