This is an automated email from the ASF dual-hosted git repository.
potiuk 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 2b7c47cf47 Add Airflow 2.8.0 to providers compatibility checks (#38878)
2b7c47cf47 is described below
commit 2b7c47cf47dd89e6dd25d3ac643cbd4001aa4a86
Author: Andrey Anshin <[email protected]>
AuthorDate: Wed Apr 10 17:05:16 2024 +0400
Add Airflow 2.8.0 to providers compatibility checks (#38878)
---
dev/breeze/src/airflow_breeze/global_constants.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py
b/dev/breeze/src/airflow_breeze/global_constants.py
index 32c8eb98f0..e17c60ad0d 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -478,6 +478,11 @@ BASE_PROVIDERS_COMPATIBILITY_CHECKS: list[dict[str, str]]
= [
"airflow-version": "2.7.1",
"remove-providers": _exclusion(["common.io", "fab"]),
},
+ {
+ "python-version": "3.8",
+ "airflow-version": "2.8.0",
+ "remove-providers": _exclusion(["fab"]),
+ },
]