Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit ad3db49

Browse files
committed
test: make Python tests work on M1
1 parent b0f22cb commit ad3db49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def filter_available_qt_dependencies(
2020
deps: list[SupportedQtDependencies],
2121
) -> list[SupportedQtDependencies]:
2222
if platform.system() == "Darwin" and platform.machine() == "arm64":
23-
return [None] + list(filter(lambda d: d in ("PySide2", "PyQt5"), deps))
23+
return [None] + list(filter(lambda d: d not in ("PySide2", "PyQt5"), deps))
2424
return [None] + deps
2525

2626

0 commit comments

Comments
 (0)