From 27d1dde01eaf276b4e19e20000df8215e074c4d7 Mon Sep 17 00:00:00 2001 From: Junjie Mao Date: Sun, 24 Apr 2022 11:37:50 +0800 Subject: [PATCH] config_tools: list dependencies on Python libraries in requirements.txt This patch adds a requirements.txt file that lists the libraries and their versions the ACRN configuration toolset needs. The versions of elementpath and xmlschema are fixed to the latest one supporting Python 3.6 due to the requirement of the customized overlay. Such requirements apply to both the board inspector and the XML manipulation part of the configurator. Tracked-On: #6690 Signed-off-by: Junjie Mao --- misc/config_tools/requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 misc/config_tools/requirements.txt diff --git a/misc/config_tools/requirements.txt b/misc/config_tools/requirements.txt new file mode 100644 index 000000000..ebbf96174 --- /dev/null +++ b/misc/config_tools/requirements.txt @@ -0,0 +1,4 @@ +defusedxml +lxml +elementpath == 2.4.0 +xmlschema == 1.9.2