Modify the requirements-compliance.txt to exclude python-magic from windows system installation. On windows, the line: ""python-magic-bin; sys_platform == "win32""" already exists. Adding: python-magic on windows creates issues where the check_compliance.py script will either freeze or throw errors related to libmagic. Signed-off-by: Jacob Wienecke <jacob.wienecke@nxp.com>
18 lines
323 B
Plaintext
18 lines
323 B
Plaintext
# COMPLIANCE: required by the compliance scripts
|
|
|
|
# used by ci/check_compliance
|
|
# zephyr-keep-sorted-start
|
|
clang-format>=15.0.0
|
|
gitlint
|
|
junitparser>=2
|
|
lxml
|
|
pykwalify
|
|
pylint>=3
|
|
python-magic-bin; sys_platform == "win32"
|
|
python-magic; sys_platform != "win32"
|
|
ruff==0.8.1
|
|
sphinx-lint
|
|
unidiff
|
|
yamllint
|
|
# zephyr-keep-sorted-stop
|