This is an automated email from the ASF dual-hosted git repository.
weilee 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 729e74be2e0 Add pandas as an optional dependency to the AMPP (#58984)
729e74be2e0 is described below
commit 729e74be2e00a2c259ccb31f0ce2a75a5477db71
Author: Niko Oliveira <[email protected]>
AuthorDate: Tue Dec 2 19:41:09 2025 -0800
Add pandas as an optional dependency to the AMPP (#58984)
---
providers/amazon/pyproject.toml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/providers/amazon/pyproject.toml b/providers/amazon/pyproject.toml
index c075482f9c7..1296686e9a6 100644
--- a/providers/amazon/pyproject.toml
+++ b/providers/amazon/pyproject.toml
@@ -132,6 +132,10 @@ dependencies = [
"mongo" = [
"apache-airflow-providers-mongo"
]
+"pandas" = [
+ 'pandas>=2.1.2; python_version <"3.13"',
+ 'pandas>=2.2.3; python_version >="3.13"',
+]
"openlineage" = [
"apache-airflow-providers-openlineage>=2.3.0"
]