Skip to content

Commit 70f55bc

Browse files
jacob-wienecke-nxpfabiobaltieri
authored andcommitted
scripts: requirements-compliance.txt: fix windows requirements
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 <[email protected]>
1 parent ae2e42b commit 70f55bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/requirements-compliance.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ junitparser>=2
88
lxml
99
pykwalify
1010
pylint>=3
11-
python-magic
1211
python-magic-bin; sys_platform == "win32"
12+
python-magic; sys_platform != "win32"
1313
ruff==0.8.1
1414
sphinx-lint
1515
unidiff

0 commit comments

Comments
 (0)