From ed70741587d0d7f5cc90b2f510c38474a7ad9375 Mon Sep 17 00:00:00 2001 From: Paul Mairo Date: Sat, 22 Jul 2023 12:22:53 +0200 Subject: Create a workaround to install PyQT 6.5.2 until release Right now the version of PyQT available on PyPI is 6.5.1 and it's buggy with Qutebrowser, this is a quick hack to get it working until it's released early next week. --- scripts/mkvenv.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/mkvenv.py b/scripts/mkvenv.py index 5f52792c6..9e9c1f4a2 100755 --- a/scripts/mkvenv.py +++ b/scripts/mkvenv.py @@ -504,6 +504,9 @@ def install_pyqt(venv_dir, args): install_pyqt_binary(venv_dir, args.pyqt_version) if args.pyqt_snapshot: install_pyqt_shapshot(venv_dir, args.pyqt_snapshot.split(',')) + # Workaround until pyqt 6.5.2 is released on pypi + elif args.pyqt_version in ("6.5", "6", "auto"): + install_pyqt_shapshot(venv_dir, ["PyQt6-Qt6", "PyQt6-WebEngine-Qt6"]) elif args.pyqt_type == 'source': install_pyqt_source(venv_dir, args.pyqt_version) elif args.pyqt_type == 'link': -- cgit v1.2.3-54-g00ecf