8000 gh-120602: Support LLVM_VERSION_SUFFIX · python/cpython@69e43a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 69e43a9

Browse files
committed
gh-120602: Support LLVM_VERSION_SUFFIX
1 parent 4f59f86 commit 69e43a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/jit/_llvm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import typing
1010

1111
_LLVM_VERSION = 18
12-
_LLVM_VERSION_PATTERN = re.compile(rf"version\s+{_LLVM_VERSION}\.\d+\.\d+\s+")
12+
_LLVM_VERSION_PATTERN = re.compile(rf"version\s+{_LLVM_VERSION}\.\d+\.\d+\S*\s+")
1313

1414
_P = typing.ParamSpec("_P")
1515
_R = typing.TypeVar("_R")

0 commit comments

Comments
 (0)
0