summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-05-30 20:54:46 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-08-23 18:31:42 +0200
commit38f6de4b0c989f5769cbaad470745f1ca5f7f5bf (patch)
tree7dc2e9731ca48bbc36932ea60113a0f36e55bdc3
parent7ab16cccc15bad6296e10bb896c138fdb27d8de2 (diff)
downloadqutebrowser-38f6de4b0c989f5769cbaad470745f1ca5f7f5bf.tar.gz
qutebrowser-38f6de4b0c989f5769cbaad470745f1ca5f7f5bf.zip
mkvenv: Apply workaround with --pyqt-version 5
-rwxr-xr-xscripts/mkvenv.py2
1 files changed, 1 insertions, 1 deletions
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