From 83651f3acd95410b8bb117637641eb650f4762bc Mon Sep 17 00:00:00 2001 From: David Tenty Date: Fri, 25 Oct 2019 13:54:29 -0400 Subject: [PATCH] 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 --- bindings/python/llvm/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/llvm/common.py b/bindings/python/llvm/common.py index c29c5eecf74..9c6c6d43345 100644 --- a/bindings/python/llvm/common.py +++ b/bindings/python/llvm/common.py @@ -13,9 +13,9 @@ from ctypes import cdll import ctypes.util import platform -# LLVM_VERSION: sync with PACKAGE_VERSION in autoconf/configure.ac and CMakeLists.txt +# LLVM_VERSION: sync with PACKAGE_VERSION in CMakeLists.txt # but leave out the 'svn' suffix. -LLVM_VERSION = '3.4' +LLVM_VERSION = '10.0.0' __all__ = [ 'c_object_p',