We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 125df84 commit 07ac709Copy full SHA for 07ac709
ffi/build.py
@@ -188,8 +188,8 @@ def main_posix(kind, library_ext):
188
else:
189
(version, _) = out.split('.', 1)
190
version = int(version)
191
- if version not in (15, 16):
192
- msg = ("Building llvmlite requires LLVM 15 or 16, got "
+ if version not in (15, 16, 17):
+ msg = ("Building llvmlite requires LLVM 15 - 17, got "
193
"{!r}. Be sure to set LLVM_CONFIG to the right executable "
194
"path.\nRead the documentation at "
195
"http://llvmlite.pydata.org/ for more information about "
0 commit comments