Merge branch 'master' of https://github.com/rmpr/qutebrowser
This commit is contained in:
commit
4a031f4eaf
|
|
@ -276,7 +276,8 @@ def install_pyqt_link(venv_dir: pathlib.Path, version: str) -> None:
|
|||
"""Install PyQt by linking a system-wide install."""
|
||||
utils.print_title("Linking system-wide PyQt")
|
||||
lib_path = link_pyqt.get_venv_lib_path(str(venv_dir))
|
||||
link_pyqt.link_pyqt(sys.executable, lib_path, version=version)
|
||||
major_version: str = "6" if _is_qt6_version(version) else "5"
|
||||
link_pyqt.link_pyqt(sys.executable, lib_path, version=major_version)
|
||||
|
||||
|
||||
def install_pyqt_wheels(venv_dir: pathlib.Path,
|
||||
|
|
|
|||
Loading…
Reference in New Issue