From 589c789d4d80b971f9aae519fc4aa301654bd280 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Wed, 3 Jun 2026 00:33:37 +0000 Subject: [PATCH] Fix pywebview qt dep on non-Windows platforms. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2cdb82..7a76f4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,8 +53,8 @@ parse-torrent-title = { git = "https://github.com/platelminto/parse-torrent-titl [project.optional-dependencies] gui = [ - "pywebview>=6.2.1; platform_system != 'Darwin'", - "pywebview[qt5]>=6.2.1; platform_system == 'Darwin'", + "pywebview[qt]>=6.2.1; platform_system != 'Windows'", + "pywebview>=6.2.1; platform_system == 'Windows'", "qtpy>=2.4.1; platform_system == 'Darwin'", "PyQt5>=5.15.11; platform_system == 'Darwin'", "pythonnet>=3.1.0rc0; platform_system == 'Windows' and python_version >= '3.14'",