Skip to content

Commit ea8c80b

Browse files
Reduce required python version to 3.7.
1 parent 6f7ac62 commit ea8c80b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/utils/aarch64_builtins_test_generator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from pathlib import Path
2828
from typing import Any, Dict, Iterable, List, Sequence, Tuple
2929

30-
assert sys.version_info >= (3, 10), "Only Python 3.10+ is supported."
30+
assert sys.version_info >= (3, 7), "Only Python 3.7+ is supported."
3131

3232

3333
# Are we testing arm_sve.h or arm_sme.h based builtins.
@@ -43,7 +43,7 @@ class FunctionType(Enum):
4343

4444

4545
# Builtins are grouped by their required features.
46-
@dataclass(frozen=True, order=True, slots=True)
46+
@dataclass(frozen=True, order=True)
4747
class BuiltinContext:
4848
guard: str
4949
streaming_guard: str

0 commit comments

Comments
 (0)