[PATCH] D69436: Update version number in llvm python bindings

David Tenty via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 25 09:48:10 PDT 2019


daltenty created this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

The version number has come out of sync with what is in CMakeLists.txt,
causing loading the bindings to fail.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D69436

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


Index: llvm/bindings/python/llvm/common.py
===================================================================
--- llvm/bindings/python/llvm/common.py
+++ 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',


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69436.226446.patch
Type: text/x-patch
Size: 526 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191025/30fd90fc/attachment.bin>


More information about the llvm-commits mailing list