aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--c_picker/__init__.py2
-rw-r--r--docs/project/change-log.rst10
-rw-r--r--setup.py4
3 files changed, 12 insertions, 4 deletions
diff --git a/c_picker/__init__.py b/c_picker/__init__.py
index b6065821d..8d5195393 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 037f6dace..0bcc24667 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
diff --git a/setup.py b/setup.py
index b19958eb8..34be5d3e4 100644
--- a/setup.py
+++ b/setup.py
@@ -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