Skip to content

Commit 07ac709

Browse files
committed
Allow build with 17
1 parent 125df84 commit 07ac709

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ffi/build.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ def main_posix(kind, library_ext):
188188
else:
189189
(version, _) = out.split('.', 1)
190190
version = int(version)
191-
if version not in (15, 16):
192-
msg = ("Building llvmlite requires LLVM 15 or 16, got "
191+
if version not in (15, 16, 17):
192+
msg = ("Building llvmlite requires LLVM 15 - 17, got "
193193
"{!r}. Be sure to set LLVM_CONFIG to the right executable "
194194
"path.\nRead the documentation at "
195195
"http://llvmlite.pydata.org/ for more information about "

0 commit comments

Comments
 (0)