This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch limit-celery-provider-3.17.0 in repository https://gitbox.apache.org/repos/asf/airflow.git
commit da09a7c29fc94481b94967a21f993ef30001a3fe Author: Jarek Potiuk <[email protected]> AuthorDate: Sat Mar 7 19:00:36 2026 +0100 Limit Celery Provider to not install 3.17.0 as it breaks airflow 2.11 See #63043 --- hatch_build.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hatch_build.py b/hatch_build.py index a1f207c7724..8b6a0d05395 100644 --- a/hatch_build.py +++ b/hatch_build.py @@ -753,9 +753,11 @@ def get_python_exclusion(excluded_python_versions: list[str]): def get_provider_exclusion(normalized_provider_name: str): if normalized_provider_name == "celery": - # This version of celery provider breaks Airflow 2.11.1 + # The 3.16.0 version of celery provider breaks Airflow 2.11.* # https://github.com/apache/airflow/issues/61766#issuecomment-3902002494 - return "!=3.16.0" + # Also 3.17.0 breaks Airflow 2.11.* + # https://github.com/apache/airflow/issues/63043 + return "!=3.16.0,!=3.17.0" return ""
