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
This commit is contained in:
David Tenty 2019-10-25 13:54:29 -04:00
parent 738af7a624
commit 0e4d415311
1 changed files with 2 additions and 2 deletions

View File

@ -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',