Skip to content

Commit

Permalink
pythongh-120602: Support LLVM_VERSION_SUFFIX
Browse files Browse the repository at this point in the history
Pull-Request: python#120604
Signed-off-by: Michał Górny <mgorny@gentoo.org>
  • Loading branch information
xarblu authored and mgorny committed Jun 18, 2024
1 parent f117741 commit 14a1830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/jit/_llvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import typing

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

_P = typing.ParamSpec("_P")
_R = typing.TypeVar("_R")
Expand Down

0 comments on commit 14a1830

Please sign in to comment.