Add a compliance check that allows to flag when a given file requires a Python version higher than 3.10 (minimum supported version in Zephyr at the time of writing) since not all Python scripts are tested against 3.10 in CI and we want to avoid introducing changes that could break users. Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
18 lines
339 B
Text
18 lines
339 B
Text
# COMPLIANCE: required by the compliance scripts
|
|
|
|
# used by ci/check_compliance
|
|
# zephyr-keep-sorted-start
|
|
clang-format>=15.0.0
|
|
gitlint
|
|
junitparser>=2
|
|
lxml>=5.3.0
|
|
pykwalify
|
|
pylint>=3
|
|
python-magic-bin; sys_platform == "win32"
|
|
python-magic; sys_platform != "win32"
|
|
ruff==0.11.11
|
|
sphinx-lint
|
|
unidiff
|
|
vermin
|
|
yamllint
|
|
# zephyr-keep-sorted-stop
|