diff --git a/pyproject.toml b/pyproject.toml index ac3af8e..b4263be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,11 @@ packages = [ [tool.poetry.dependencies] python = ">=3.7,<4.0" -aiohttp = ">=3.8.0,<=3.9.3" +#aiohttp = ">=3.8.0,<=3.9.3" +aiohttp = [ + { version = ">=3.8.0", python = "<=3.7" }, + { version = ">=3.9.3", python = ">=3.12" } +] [tool.poetry.dev-dependencies] pytest = ">=7.1.3,<=8.1.1"