From 0959d3bf3826f7fc3bbcfa29afcc21272483811b Mon Sep 17 00:00:00 2001 From: Nidhi Rajani <97787490+nidhi1603@users.noreply.github.com> Date: Fri, 27 Mar 2026 16:02:08 -0400 Subject: [PATCH] fix: remove obsolete boto3 extra from aiobotocore dependency aiobotocore 3.3.0 removed the boto3 extra (aio-libs/aiobotocore#1424). Since boto3 is already a required dependency of the Amazon provider package, the extra is unnecessary. Fixes #64283 --- providers/amazon/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/amazon/pyproject.toml b/providers/amazon/pyproject.toml index 47ec2e64e93dc..67d753e3c357c 100644 --- a/providers/amazon/pyproject.toml +++ b/providers/amazon/pyproject.toml @@ -90,7 +90,7 @@ dependencies = [ # TODO: We can remove it once boto3 and aiobotocore both have compatible botocore version or # boto3 have native async support and we move away from aio aiobotocore "aiobotocore" = [ - "aiobotocore[boto3]>=2.26.0", + "aiobotocore>=2.26.0", ] "cncf.kubernetes" = [ "apache-airflow-providers-cncf-kubernetes>=7.2.0",