-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to llvm-11.0.0. Signed-off-by: Tao He <[email protected]> * Fixes for ENV on Windows. * Fixes for ENV on Windows. * Fixes artifacts uploading. * Update doc tags. * Add readme.md to long description. * Resolve soft links before packing artifacts.
- Loading branch information
1 parent
cd10f77
commit 381fbf5
Showing
9 changed files
with
59 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
:Date: 2020-08-07 | ||
:Version: 10.0.1 | ||
:Date: 2020-10-24 | ||
:Version: 11.0.0 | ||
:Authors: - LLVM Team | ||
|
||
.. meta:: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,12 +49,15 @@ def run(self): | |
self.copy_file(os.path.join(source_dir, libname), | ||
os.path.join(target_dir, libname)) | ||
|
||
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8', mode='r') as fp: | ||
long_description = fp.read() | ||
|
||
setup( | ||
name='libclang', | ||
version='10.0.1', | ||
description='Clang Python Bindings.', | ||
long_description='Clang Python Bindings, mirrored from the official LLVM repo: https://github.com/llvm/llvm-project/tree/master/clang/bindings/python, to make the installation process easier.', | ||
version='11.0.0', | ||
description='Clang Python Bindings, mirrored from the official LLVM repo: https://github.com/llvm/llvm-project/tree/master/clang/bindings/python, to make the installation process easier.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Tao He', | ||
author_email='[email protected]', | ||
url='https://github.com/sighingnow/libclang', | ||
|
@@ -96,6 +99,7 @@ def run(self): | |
|
||
project_urls={ | ||
'Documentation': 'https://libclang.readthedocs.io', | ||
'Source': 'https://github.com/sighingonw/libclang', | ||
'Source': 'https://github.com/sighingnow/libclang', | ||
'Tracker': 'https://github.com/sighingnow/libclang/issues', | ||
}, | ||
) |