You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by pi...@apache.org on 2023/10/18 21:44:06 UTC

[airflow] branch main updated: Fix update-constraints command example (#35042)

This is an automated email from the ASF dual-hosted git repository.

pierrejeambrun 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 50f6483b24 Fix update-constraints command example (#35042)
50f6483b24 is described below

commit 50f6483b24ef11eddbec7864abbe85181eaf8638
Author: Pierre Jeambrun <pi...@gmail.com>
AuthorDate: Thu Oct 19 05:43:59 2023 +0800

    Fix update-constraints command example (#35042)
---
 dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md b/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md
index 8cd2290661..29b25f5f11 100644
--- a/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md
+++ b/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md
@@ -517,7 +517,8 @@ Example of updating constraints for Airflow 2.5.0 - 2.6.3 and updating `pymssql`
 breeze release-management update-constraints --constraints-repo /home/user/airflow-constraints \
     --airflow-versions 2.5.0,2.5.1,2.5.2,2.5.3,2.6.0,2.6.1,2.6.2,2.6.3 \
     --updated-constraint pymssql==2.2.8 \
-    --commit-message "Update pymssql constraint to 2.2.8"
+    --commit-message "Update pymssql constraint to 2.2.8" \
+    --airflow-constraints-mode constraints
 ```
 
 Example of updating multiple constraints:
@@ -527,5 +528,6 @@ breeze release-management update-constraints --constraints-repo /home/user/airfl
     --airflow-versions 2.5.0,2.5.1,2.5.2,2.5.3,2.6.0,2.6.1,2.6.2,2.6.3 \
     --updated-constraint pymssql==2.2.8 \
     --updated-constraint Authlib==1.3.0 \
-    --commit-message "Update pymssql constraint to 2.2.8 and Authlib to 1.3.0"
+    --commit-message "Update pymssql constraint to 2.2.8 and Authlib to 1.3.0" \
+    --airflow-constraints-mode constraints
 ```