From dbdd78c1bd9e4f4d22716be125c1a1dc1a88c201 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Sat, 14 Feb 2026 18:25:10 +0000 Subject: [PATCH] fix: Remove invalid PyQt6-SVG package from requirements The package 'PyQt6-Qt6-SVG' does not exist on PyPI. PyQt6 6.4.0+ includes SVG support by default via QtSvg module. Users were getting: ERROR: No matching distribution found for PyQt6-Qt6-SVG Fix: Removed the invalid package line. SVG support will work with base PyQt6 installation. --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 08bdb83..6798a09 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ # Core dependencies PyQt6>=6.4.0 -PyQt6-Qt6-SVG # SVG support for icons keyboard>=0.13.5 # OCR and Image Processing (for Game Reader and Skill Scanner)