[PATCH 1/6] python: Create requirements.txt files for each "project"
Tom Rini
trini at konsulko.com
Wed Feb 5 00:12:04 CET 2025
Rather than have a requirements.txt file that's shared between multiple
python projects within U-Boot, create one for each using "pipreqs".
Signed-off-by: Tom Rini <trini at konsulko.com>
---
Cc: Simon Glass <sjg at chromium.org>
---
tools/binman/requirements.txt | 5 +++++
tools/patman/requirements.txt | 5 +++++
tools/u_boot_pylib/requirements.txt | 1 +
3 files changed, 11 insertions(+)
create mode 100644 tools/binman/requirements.txt
create mode 100644 tools/patman/requirements.txt
create mode 100644 tools/u_boot_pylib/requirements.txt
diff --git a/tools/binman/requirements.txt b/tools/binman/requirements.txt
new file mode 100644
index 000000000000..f068ef75a304
--- /dev/null
+++ b/tools/binman/requirements.txt
@@ -0,0 +1,5 @@
+importlib_resources==6.5.2
+jsonschema==4.23.0
+pycryptodomex==3.21.0
+pyelftools==0.31
+yamllint==1.35.1
diff --git a/tools/patman/requirements.txt b/tools/patman/requirements.txt
new file mode 100644
index 000000000000..e8cbc6cf0c37
--- /dev/null
+++ b/tools/patman/requirements.txt
@@ -0,0 +1,5 @@
+ConfigParser==7.1.0
+importlib_resources==6.5.2
+pygit2==1.13.3
+Requests==2.32.3
+setuptools==75.8.0
diff --git a/tools/u_boot_pylib/requirements.txt b/tools/u_boot_pylib/requirements.txt
new file mode 100644
index 000000000000..1087e6f2857b
--- /dev/null
+++ b/tools/u_boot_pylib/requirements.txt
@@ -0,0 +1 @@
+concurrencytest==0.1.2
--
2.43.0
More information about the U-Boot
mailing list