This is an automated email from the ASF dual-hosted git repository. taragolis pushed a commit to branch airflow-28-providers-compat-check in repository https://gitbox.apache.org/repos/asf/airflow.git
commit e2adfd5c22595dead4271e058dc918512329567b Author: Andrey Anshin <[email protected]> AuthorDate: Tue Apr 9 22:55:33 2024 +0400 Add Airflow 2.8.0 to providers compatibility checks --- 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"]), + }, ]
