From 45a9bb4acad33af3cee914adb6937fe342b2ce16 Mon Sep 17 00:00:00 2001 From: Jakob Pinterits Date: Thu, 14 Nov 2024 19:30:27 +0100 Subject: [PATCH] webview: use CEF on windows, QT otherwise --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index eaed7238..547cce98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,7 +73,9 @@ window = [ "aiofiles~=23.2", "copykitten~=1.2", "platformdirs~=3.11", - "pywebview[qt]>=5.3.2", + "pywebview~=5.3.2", + "pywebview[cef] ; sys_platform == 'win32'", + "pywebview[qt] ; sys_platform != 'win32'", ] [project.urls]