This is an automated email from the ASF dual-hosted git repository.
jscheffl 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 d01052ecd97 Ensure fab provider is installed when running EdgeExecutor
(#49473)
d01052ecd97 is described below
commit d01052ecd970d281740faa78cf18f5e737681958
Author: Jens Scheffler <[email protected]>
AuthorDate: Sun Apr 20 19:20:55 2025 +0200
Ensure fab provider is installed when running EdgeExecutor (#49473)
---
providers/edge3/pyproject.toml | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/providers/edge3/pyproject.toml b/providers/edge3/pyproject.toml
index d2ee5f6a9c9..cebc8fb453b 100644
--- a/providers/edge3/pyproject.toml
+++ b/providers/edge3/pyproject.toml
@@ -58,17 +58,11 @@ requires-python = "~=3.9"
# After you modify the dependencies, and rebuild your Breeze CI image with
``breeze ci-image build``
dependencies = [
"apache-airflow>=2.10.0",
+ "apache-airflow-providers-fab>=1.5.3",
"pydantic>=2.11.0",
"retryhttp>=1.2.0,!=1.3.0",
]
-# The optional dependencies should be modified in place in the generated file
-# Any change in the dependencies is preserved when the file is regenerated
-[project.optional-dependencies]
-"fab" = [
- "apache-airflow-providers-fab"
-]
-
[dependency-groups]
dev = [
"apache-airflow",