Skip to content

Commit 0e4d415

Browse files
committed
Update version number in llvm python bindings
Summary: The version number has come out of sync with what is in CMakeLists.txt, causing loading the bindings to fail. Reviewers: AustinWells, abhina.sree Reviewed By: AustinWells Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D69436
1 parent 738af7a commit 0e4d415

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/bindings/python/llvm/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
import ctypes.util
1414
import platform
1515

16-
# LLVM_VERSION: sync with PACKAGE_VERSION in autoconf/configure.ac and CMakeLists.txt
16+
# LLVM_VERSION: sync with PACKAGE_VERSION in CMakeLists.txt
1717
# but leave out the 'svn' suffix.
18-
LLVM_VERSION = '3.4'
18+
LLVM_VERSION = '10.0.0'
1919

2020
__all__ = [
2121
'c_object_p',

0 commit comments

Comments
 (0)