From 5e5c720fdfd6fcc045573f62b1d523584f8c020f Mon Sep 17 00:00:00 2001 From: Matt Zimmerman Date: Sun, 22 Jun 2025 13:28:45 -0700 Subject: [PATCH] Fix aiohttp dependency constraint Allow aiohttp>=3.9.1 instead of ~=3.9.1 to be compatible with newer versions used by Home Assistant --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6e1f89c..375ae08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "API to query and control hot tubs using the SmartTub system" readme = "README.md" requires-python = ">=3.9" dependencies = [ - "aiohttp~=3.9.1", + "aiohttp>=3.9.1", "inflection~=0.5.1", "pyjwt~=2.8.0", "python-dateutil~=2.8.1"