fix(docs): docs build in aarch64 fails
docs build in aarch64 fails as PythonModules.cmake is not compatible
with cmake version 3.16.3. Checking for the presence of python modules
is not required as the python modules found are not directly used by
the cmake rule.
This fix also removes FindPlantUML. Dependency on PlantUML was removed
as part of commit f1a13aa.
Git release tag will be in format tf-rmm-<version>. Add tf-rmm- prefix
in docs/conf.py
Signed-off-by: Arunachalam Ganapathy <arunachalam.ganapathy@arm.com>
Change-Id: Ife9dc13205abb145c723354cc5843cfd436bf5ef
diff --git a/docs/conf.py b/docs/conf.py
index b865e5b..f34fa81 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -18,7 +18,7 @@
title = 'User Guide'
try:
- vregx = re.compile(r'(?P<RMM_VERSION>v.+?)'
+ vregx = re.compile(r'tf-rmm-(?P<RMM_VERSION>v.+?)'
r'(-[0-9]+-)?(?P<GIT_SHA>g[a-f0-9]{7,})?$')
git_result = check_output("git describe --tags --always",
shell = True, encoding = 'UTF-8')