qt6: Don't claim to support PySide yet

This commit is contained in:
Florian Bruhin 2022-04-19 15:29:23 +02:00
parent cf3b3e0594
commit fdec8e489c
1 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,13 @@ import os
import importlib
_WRAPPERS = ["PyQt6", "PyQt5", "PySide6", "PySide2"]
_WRAPPERS = [
"PyQt6",
"PyQt5",
# Need more work, PySide2 might not be usable at all
# "PySide6",
# "PySide2",
]
class Error(Exception):