diff options
author | Imre Kis <imre.kis@arm.com> | 2021-02-19 18:12:05 +0100 |
---|---|---|
committer | Imre Kis <imre.kis@arm.com> | 2021-03-08 12:40:13 +0100 |
commit | 7735f75b1c32845bec2576b75e659c6256053eb2 (patch) | |
tree | 7d79819fd23b41a873cb9c8f1942f95af23a85be | |
parent | 124f0e396e6b8f728079a840b87f2517497b70f8 (diff) | |
download | trusted-services-topics/c-picker.tar.gz |
Use libclang pip package instead of clangtopics/c-picker
clang pip package is not maintained anymore which makes it incompatible
with recent clang libraries. Move to libclang as it is up-to-date and
well maintained.
Signed-off-by: Imre Kis <imre.kis@arm.com>
Change-Id: Ida6eb61015645bd529e8dec880f8febef707fab9
-rw-r--r-- | c_picker/__init__.py | 2 | ||||
-rw-r--r-- | docs/project/change-log.rst | 10 | ||||
-rw-r--r-- | setup.py | 4 |
3 files changed, 12 insertions, 4 deletions
diff --git a/c_picker/__init__.py b/c_picker/__init__.py index b6065821..8d519539 100644 --- a/c_picker/__init__.py +++ b/c_picker/__init__.py @@ -9,4 +9,4 @@ Package information. __all__ = ["picker", "runner", "coverage"] __license__ = "BSD-3-Clause" -__version__ = "1.0.0" +__version__ = "1.0.1" diff --git a/docs/project/change-log.rst b/docs/project/change-log.rst index 037f6dac..0bcc2466 100644 --- a/docs/project/change-log.rst +++ b/docs/project/change-log.rst @@ -3,6 +3,14 @@ Change Log & Release Notes This document contains a summary of the new features, changes, fixes and known issues in each release of Trusted Services. +Version 1.0.1 +------------- + +Changes +^^^^^^^ +Use libclang pip dependency instead of clang. + + Version 1.0.0 ------------- @@ -26,4 +34,4 @@ None. *Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.* -SPDX-License-Identifier: BSD-3-Clause +SPDX-License-Identifier: BSD-3-Clause
\ No newline at end of file @@ -23,7 +23,7 @@ def get_install_requires(): deps = ["pyyaml>5"] try: - pkg_resources.get_distribution("clang") + pkg_resources.get_distribution("libclang") has_clang_pip = True except pkg_resources.DistributionNotFound: has_clang_pip = False @@ -36,7 +36,7 @@ def get_install_requires(): # modules if they were installed without pip (i.e. using the system's # package manager instead of pip). if not has_clang_module or has_clang_pip: - deps.append("clang") + deps.append("libclang") return deps |