This is an automated email from the ASF dual-hosted git repository.
ferruzzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 71aebdef0ee fix: remove obsolete boto3 extra from aiobotocore
dependency (#64330)
71aebdef0ee is described below
commit 71aebdef0ee709d6a9749024ee56a255f2108fd7
Author: Nidhi Rajani <[email protected]>
AuthorDate: Wed Apr 1 16:19:54 2026 -0400
fix: remove obsolete boto3 extra from aiobotocore dependency (#64330)
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 8ab8b4a0fee..414cedfeabf 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",