From 931d86898285f06258dbeca2738f993b678232f0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 30 May 2022 20:54:46 +0200 Subject: mkvenv: Apply workaround with --pyqt-version 5 --- scripts/mkvenv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mkvenv.py b/scripts/mkvenv.py index 7aed692d0..e31ceb790 100755 --- a/scripts/mkvenv.py +++ b/scripts/mkvenv.py @@ -303,7 +303,7 @@ def apply_xcb_util_workaround( if pyqt_type != 'binary': print("Workaround not needed: Not installing from PyQt binaries.") return - if pyqt_version not in ['auto', '5.15']: # FIXME:qt6 Remove once auto = Qt 6 + if pyqt_version not in ['auto', '5.15', '5']: # FIXME:qt6 Remove once auto = Qt 6 print("Workaround not needed: Not installing Qt 5.15.") return -- cgit v1.2.3-54-g00ecf