From e006c7dfa79a245bd3ada7620e72e97c028b7645 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 4 Feb 2023 20:18:57 +0900 Subject: [PATCH] llvm/test/CodeGen/MLRegalloc: Exclude python<=3.8 (D143218) Type hint `list[foo]` isn't accepted by python-3.8 (Seems requires `typing.List`) --- llvm/test/CodeGen/MLRegalloc/lit.local.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/MLRegalloc/lit.local.cfg b/llvm/test/CodeGen/MLRegalloc/lit.local.cfg index cc7f7b8..e8c7912 100644 --- a/llvm/test/CodeGen/MLRegalloc/lit.local.cfg +++ b/llvm/test/CodeGen/MLRegalloc/lit.local.cfg @@ -1,3 +1,3 @@ import sys -config.unsupported = sys.version_info.minor <= 6 +config.unsupported = sys.version_info.minor <= 8 -- 2.7.4