From c0c8fdadbfebf0c4942f9d51e5f4e9676063c902 Mon Sep 17 00:00:00 2001 From: pax Date: Sat, 11 Apr 2026 16:12:50 -0500 Subject: [PATCH] drop unused httpx[http2] extra http2 was declared in the dependency spec but no httpx client actually passes http2=True, so the extra (and its h2 pull-in) was dead weight. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d6d0825..5a6357c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.2.5" description = "Local booru image browser with Qt6 GUI" requires-python = ">=3.11" dependencies = [ - "httpx[http2]>=0.27", + "httpx>=0.27", "Pillow>=10.0", "PySide6>=6.6", "python-mpv>=1.0",