From 1d359d21909cec0cdf4991f72c9df19ab5bfc097 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 23:23:49 +0000 Subject: [PATCH 1/2] Bump pytest from 8.3.5 to 9.0.3 Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.5 to 9.0.3. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.3.5...9.0.3) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ba73f16..40255be 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -e . aiohttp==3.14.1 -pytest==8.3.5 +pytest==9.0.3 pytest-asyncio==1.3.0 From c28fbf1decf98e311a2b57c1128d1af1591ecd32 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Mon, 8 Jun 2026 00:24:49 +0100 Subject: [PATCH 2/2] Update plugin.py --- pytest_aiohttp/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_aiohttp/plugin.py b/pytest_aiohttp/plugin.py index 27f8ce2..375155a 100644 --- a/pytest_aiohttp/plugin.py +++ b/pytest_aiohttp/plugin.py @@ -117,7 +117,7 @@ async def go( @pytest.fixture -def aiohttp_client_cls() -> Type[TestClient[Any, Any]]: # type: ignore[misc] +def aiohttp_client_cls() -> Type[TestClient[Any, Any]]: """ Client class to use in ``aiohttp_client`` factory.