From 7c5b040eb54c9bc1740855bd2d89eb9629907dd1 Mon Sep 17 00:00:00 2001 From: Aleksey Reznikov Date: Wed, 26 Feb 2025 12:15:42 +0300 Subject: [PATCH] bump aiohttp latest version for frameworks tests --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index e46ad6c..751fb42 100644 --- a/noxfile.py +++ b/noxfile.py @@ -18,7 +18,7 @@ def test_litestar_versions(session, litestar_version): @nox.session() -@nox.parametrize("aiohttp_version", ["3.9.1", "3.11.12"]) +@nox.parametrize("aiohttp_version", ["3.9.1", "3.11.13"]) def test_aiohttp_versions(session, aiohttp_version): session.install(*DEPENDENCIES, f"aiohttp=={aiohttp_version}") session.run("pytest", "tests", "--framework=aiohttp", "-k", "test_frameworks")