File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
dev/breeze/src/airflow_breeze/utils Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -893,6 +893,8 @@ def regenerate_pyproject_toml(
893893 in_required_dependencies = False
894894 in_optional_dependencies = False
895895 in_additional_devel_dependency_groups = False
896+ suspended_provider_ids = get_suspended_provider_ids ()
897+
896898 for line in pyproject_toml_content .splitlines ():
897899 if line == "dependencies = [" :
898900 in_required_dependencies = True
@@ -946,6 +948,11 @@ def regenerate_pyproject_toml(
946948 cross_provider_dependencies = []
947949 # Add cross-provider dependencies to the optional dependencies if they are missing
948950 for provider_id in sorted (cross_provider_ids ):
951+ if provider_id in suspended_provider_ids :
952+ get_console ().print (
953+ f"[info]Provider { provider_id } in suspended list, skipping adding to optional dependencies.\n "
954+ )
955+ continue
949956 cross_provider_dependencies .append (f' "{ get_pip_package_name (provider_id )} ",' )
950957 if f'"{ provider_id } " = [' not in optional_dependencies and get_pip_package_name (
951958 provider_id
You can’t perform that action at this time.
0 commit comments