From 8d45fde68d93b0eaa17aa780c3889f3043334780 Mon Sep 17 00:00:00 2001 From: Jens Scheffler Date: Sat, 1 Mar 2025 14:21:11 +0100 Subject: [PATCH] Fix broken generated provider.toml on main --- providers/common/messaging/pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/providers/common/messaging/pyproject.toml b/providers/common/messaging/pyproject.toml index 922a065095507..bc5148ce99562 100644 --- a/providers/common/messaging/pyproject.toml +++ b/providers/common/messaging/pyproject.toml @@ -52,8 +52,10 @@ classifiers = [ ] requires-python = "~=3.9" -# The dependencies should be modified in place in the generated file +# The dependencies should be modified in place in the generated file. # Any change in the dependencies is preserved when the file is regenerated +# Make sure to run ``breeze static-checks --type update-providers-dependencies --all-files`` +# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ "apache-airflow>=3.0.0.dev0", ]