[llvm] 0e4d415 - Update version number in llvm python bindings

David Tenty via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 25 14:14:17 PDT 2019


Author: David Tenty
Date: 2019-10-25T17:14:11-04:00
New Revision: 0e4d41531157a8525ce59e9958ad3d81b7b38cf2

URL: https://github.com/llvm/llvm-project/commit/0e4d41531157a8525ce59e9958ad3d81b7b38cf2
DIFF: https://github.com/llvm/llvm-project/commit/0e4d41531157a8525ce59e9958ad3d81b7b38cf2.diff

LOG: 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

Added: 
    

Modified: 
    llvm/bindings/python/llvm/common.py

Removed: 
    


################################################################################
diff  --git a/llvm/bindings/python/llvm/common.py b/llvm/bindings/python/llvm/common.py
index c29c5eecf748..9c6c6d433458 100644
--- a/llvm/bindings/python/llvm/common.py
+++ b/llvm/bindings/python/llvm/common.py
@@ -13,9 +13,9 @@
 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',


        


More information about the llvm-commits mailing list