From a952247e8d583f83d58d2e2f7db9574bcd6bcc8d Mon Sep 17 00:00:00 2001 From: Cyrill Raccaud Date: Wed, 3 Jun 2026 13:38:45 +0200 Subject: [PATCH] Update aiohttp to ~=3.13.0 and bump test deps - Pin aiohttp~=3.13.0 in pyproject.toml, requirements.txt, and requirements_dev.txt - Bump pytest-asyncio minimum to >=1.4.0 - Ensures compatibility with aioresponses>=0.7.8 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- pyproject.toml | 2 +- requirements.txt | 2 +- requirements_dev.txt | 2 +- requirements_test.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5877aef..5e15592 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "Manfred Dennerlein Rodelo", email = "manfred@dennerlein.name" } ] dependencies = [ - "aiohttp>=3.10", + "aiohttp~=3.13.0", "mashumaro>=3.13", "orjson>=3.10" ] diff --git a/requirements.txt b/requirements.txt index 24311b8..965f226 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -aiohttp~=3.11 +aiohttp~=3.13.0 mashumaro>=3.13.1 orjson>=3.11.7 \ No newline at end of file diff --git a/requirements_dev.txt b/requirements_dev.txt index 38cbecb..cfba121 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,4 +1,4 @@ -aiohttp~=3.11 +aiohttp~=3.13.0 mypy>=2.1.0 pydantic>=2.13.4 pre-commit>=4.6.0 diff --git a/requirements_test.txt b/requirements_test.txt index 05c59aa..e385481 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -1,5 +1,5 @@ aioresponses>=0.7.8 -pytest-asyncio>=1.3.0 +pytest-asyncio>=1.4.0 pytest-cov>=7.1.0 pytest>=9.0.3 python-dotenv>=1.2.2