From b92643c8d0a04fb191a52d9973e98297cb287d03 Mon Sep 17 00:00:00 2001 From: jonathan343 Date: Fri, 17 Jul 2026 16:00:52 -0400 Subject: [PATCH] fix: synchronize aiohttp constraint in uv.lock Restore the lockfile metadata to match smithy-http's declared aiohttp constraint. Dependabot's 3.14.0 update changed the generated minimum version without updating pyproject.toml. --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index 90e8cea62..e90f42d74 100644 --- a/uv.lock +++ b/uv.lock @@ -753,7 +753,7 @@ awscrt = [ [package.metadata] requires-dist = [ - { name = "aiohttp", marker = "extra == 'aiohttp'", specifier = ">=3.14.0,<4.0" }, + { name = "aiohttp", marker = "extra == 'aiohttp'", specifier = ">=3.11.12,<4.0" }, { name = "awscrt", marker = "extra == 'awscrt'", specifier = "~=0.32.0" }, { name = "smithy-core", editable = "packages/smithy-core" }, { name = "yarl", marker = "extra == 'aiohttp'" },