2024-06-24 13:52:46 +00:00
|
|
|
# Requirements/dependencies for various Python scripts used in the Armbian Build Framework
|
|
|
|
|
#
|
|
|
|
|
# IMPORTANT NOTES:
|
|
|
|
|
# When adding a new requirements, please leave a comment to explain its purpose.
|
|
|
|
|
# Always use a fixed version, this is important for correct hashing.
|
|
|
|
|
# Dependabot will keep these versions up to date.
|
|
|
|
|
|
2025-02-24 03:08:25 +00:00
|
|
|
pip == 25.0.1 # pip is the package installer for Python
|
2025-03-24 20:05:05 +00:00
|
|
|
setuptools == 78.0.1 # for building Python packages
|
2025-02-24 19:23:26 +00:00
|
|
|
pyelftools == 0.32 # for building U-Boot
|
2024-06-24 13:52:46 +00:00
|
|
|
unidiff == 0.7.5 # for parsing unified diff
|
2025-01-06 18:50:06 +00:00
|
|
|
GitPython == 3.1.44 # for manipulating git repos
|
2024-06-24 13:52:46 +00:00
|
|
|
unidecode == 1.3.8 # for converting strings to ascii
|
|
|
|
|
coloredlogs == 15.0.1 # for colored logging
|
2024-08-12 18:34:15 +00:00
|
|
|
PyYAML == 6.0.2 # for parsing/writing YAML
|
2024-09-11 17:28:42 +00:00
|
|
|
oras == 0.1.30 # for OCI stuff in mapper-oci-update
|
2025-03-10 18:47:57 +00:00
|
|
|
Jinja2 == 3.1.6 # for templating
|
2024-11-04 19:04:31 +00:00
|
|
|
rich == 13.9.4 # for rich text formatting
|
2025-02-10 18:46:31 +00:00
|
|
|
dtschema == 2025.2 # for checking dts files and dt bindings
|
2025-03-24 20:12:33 +00:00
|
|
|
yamllint == 1.37.0 # for checking dts files and dt bindings
|