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

uranusjr 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 5a8209e509 Add --platform to breeze shell and start-airflow (#24626)
5a8209e509 is described below

commit 5a8209e5096528b6f562efebbe71b6b9c378aaed
Author: Tzu-ping Chung <[email protected]>
AuthorDate: Fri Jun 24 18:12:14 2022 +0800

    Add --platform to breeze shell and start-airflow (#24626)
    
    This allows Breeze to run images of another platform, such as AMD64 on
    an ARM machine.
---
 .../airflow_breeze/commands/ci_image_commands.py   |   9 +-
 .../airflow_breeze/commands/developer_commands.py  |   7 +
 .../commands/production_image_commands.py          |   4 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   3 +-
 .../src/airflow_breeze/params/shell_params.py      |   2 +
 .../src/airflow_breeze/utils/common_options.py     |   9 +-
 images/breeze/output-commands-hash.txt             |   2 +-
 images/breeze/output-shell.svg                     | 228 ++++++++++----------
 images/breeze/output-start-airflow.svg             | 236 +++++++++++----------
 9 files changed, 264 insertions(+), 236 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/commands/ci_image_commands.py 
b/dev/breeze/src/airflow_breeze/commands/ci_image_commands.py
index 859bb2e905..15f672c421 100644
--- a/dev/breeze/src/airflow_breeze/commands/ci_image_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/ci_image_commands.py
@@ -51,7 +51,7 @@ from airflow_breeze.utils.common_options import (
     option_image_tag,
     option_install_providers_from_sources,
     option_parallelism,
-    option_platform,
+    option_platform_multiple,
     option_prepare_buildx_cache,
     option_pull_image,
     option_push_image,
@@ -231,7 +231,7 @@ def run_build_in_parallel(
 @option_parallelism
 @option_python_versions
 @option_upgrade_to_newer_dependencies
-@option_platform
+@option_platform_multiple
 @option_debian_version
 @option_github_token
 @option_github_username
@@ -575,7 +575,10 @@ def rebuild_or_pull_ci_image_if_needed(
         BUILD_CACHE_DIR, command_params.airflow_branch, 
f".built_{command_params.python}"
     )
     ci_image_params = BuildCiParams(
-        python=command_params.python, upgrade_to_newer_dependencies=False, 
image_tag=command_params.image_tag
+        python=command_params.python,
+        upgrade_to_newer_dependencies=False,
+        image_tag=command_params.image_tag,
+        platform=command_params.platform,
     )
     if command_params.image_tag is not None:
         return_code, message = run_pull_image(
diff --git a/dev/breeze/src/airflow_breeze/commands/developer_commands.py 
b/dev/breeze/src/airflow_breeze/commands/developer_commands.py
index bc324bf7e3..4db880ec14 100644
--- a/dev/breeze/src/airflow_breeze/commands/developer_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/developer_commands.py
@@ -53,6 +53,7 @@ from airflow_breeze.utils.common_options import (
     option_mount_sources,
     option_mssql_version,
     option_mysql_version,
+    option_platform_single,
     option_postgres_version,
     option_python,
     option_use_airflow_version,
@@ -226,6 +227,7 @@ DEVELOPER_PARAMETERS = {
 @option_verbose
 @option_dry_run
 @option_python
+@option_platform_single
 @option_backend
 @option_debian_version
 @option_github_repository
@@ -267,6 +269,7 @@ def shell(
     db_reset: bool,
     answer: Optional[str],
     image_tag: Optional[str],
+    platform: Optional[str],
     extra_args: Tuple,
 ):
     """Enter breeze.py environment. this is the default command use when no 
other is selected."""
@@ -296,6 +299,7 @@ def shell(
         answer=answer,
         debian_version=debian_version,
         image_tag=image_tag,
+        platform=platform,
     )
 
 
@@ -303,6 +307,7 @@ def shell(
 @main.command(name='start-airflow')
 @option_dry_run
 @option_python
+@option_platform_single
 @option_github_repository
 @option_backend
 @option_postgres_version
@@ -346,6 +351,7 @@ def start_airflow(
     image_tag: Optional[str],
     db_reset: bool,
     answer: Optional[str],
+    platform: Optional[str],
     extra_args: Tuple,
 ):
     """Enter breeze.py environment and starts all Airflow components in the 
tmux session."""
@@ -372,6 +378,7 @@ def start_airflow(
         db_reset=db_reset,
         start_airflow=True,
         image_tag=image_tag,
+        platform=platform,
         extra_args=extra_args,
         answer=answer,
     )
diff --git 
a/dev/breeze/src/airflow_breeze/commands/production_image_commands.py 
b/dev/breeze/src/airflow_breeze/commands/production_image_commands.py
index 9ae3791e31..905fa6cc6b 100644
--- a/dev/breeze/src/airflow_breeze/commands/production_image_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/production_image_commands.py
@@ -50,7 +50,7 @@ from airflow_breeze.utils.common_options import (
     option_image_tag,
     option_install_providers_from_sources,
     option_parallelism,
-    option_platform,
+    option_platform_multiple,
     option_prepare_buildx_cache,
     option_pull_image,
     option_push_image,
@@ -238,7 +238,7 @@ def run_build_in_parallel(
 @option_parallelism
 @option_python_versions
 @option_upgrade_to_newer_dependencies
-@option_platform
+@option_platform_multiple
 @option_debian_version
 @option_github_repository
 @option_github_token
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py 
b/dev/breeze/src/airflow_breeze/global_constants.py
index bc73e1e721..7eeaf1c860 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -88,7 +88,8 @@ ALLOWED_INSTALLATION_METHODS = ['.', 'apache-airflow']
 ALLOWED_DEBIAN_VERSIONS = ['bullseye', 'buster']
 ALLOWED_BUILD_CACHE = ["registry", "local", "disabled"]
 MULTI_PLATFORM = "linux/amd64,linux/arm64"
-ALLOWED_PLATFORMS = ["linux/amd64", "linux/arm64", MULTI_PLATFORM]
+SINGLE_PLATFORMS = ["linux/amd64", "linux/arm64"]
+ALLOWED_PLATFORMS = [*SINGLE_PLATFORMS, MULTI_PLATFORM]
 ALLOWED_USE_AIRFLOW_VERSIONS = ['none', 'wheel', 'sdist']
 
 PARAM_NAME_DESCRIPTION = {
diff --git a/dev/breeze/src/airflow_breeze/params/shell_params.py 
b/dev/breeze/src/airflow_breeze/params/shell_params.py
index 1b5d6925de..b4c1e73f5a 100644
--- a/dev/breeze/src/airflow_breeze/params/shell_params.py
+++ b/dev/breeze/src/airflow_breeze/params/shell_params.py
@@ -31,6 +31,7 @@ from airflow_breeze.global_constants import (
     ALLOWED_POSTGRES_VERSIONS,
     ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS,
     AVAILABLE_INTEGRATIONS,
+    DOCKER_DEFAULT_PLATFORM,
     MOUNT_ALL,
     MOUNT_REMOVE,
     MOUNT_SELECTED,
@@ -78,6 +79,7 @@ class ShellParams:
     mysql_version: str = ALLOWED_MYSQL_VERSIONS[0]
     num_runs: str = ""
     package_format: str = ALLOWED_INSTALLATION_PACKAGE_FORMATS[0]
+    platform: str = DOCKER_DEFAULT_PLATFORM
     postgres_version: str = ALLOWED_POSTGRES_VERSIONS[0]
     python: str = ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS[0]
     skip_environment_initialization: bool = False
diff --git a/dev/breeze/src/airflow_breeze/utils/common_options.py 
b/dev/breeze/src/airflow_breeze/utils/common_options.py
index 292e74891d..f6fa311367 100644
--- a/dev/breeze/src/airflow_breeze/utils/common_options.py
+++ b/dev/breeze/src/airflow_breeze/utils/common_options.py
@@ -37,6 +37,7 @@ from airflow_breeze.global_constants import (
     ALLOWED_POSTGRES_VERSIONS,
     ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS,
     ALLOWED_USE_AIRFLOW_VERSIONS,
+    SINGLE_PLATFORMS,
     get_available_packages,
 )
 from airflow_breeze.utils.custom_param_types import (
@@ -196,12 +197,18 @@ option_image_tag = click.option(
 option_image_name = click.option(
     '-n', '--image-name', help='Name of the image to verify (overrides 
--python and --image-tag).'
 )
-option_platform = click.option(
+option_platform_multiple = click.option(
     '--platform',
     help='Platform for Airflow image.',
     envvar='PLATFORM',
     type=BetterChoice(ALLOWED_PLATFORMS),
 )
+option_platform_single = click.option(
+    '--platform',
+    help='Platform for Airflow image.',
+    envvar='PLATFORM',
+    type=BetterChoice(SINGLE_PLATFORMS),
+)
 option_debian_version = click.option(
     '--debian-version',
     help='Debian version used for the image.',
diff --git a/images/breeze/output-commands-hash.txt 
b/images/breeze/output-commands-hash.txt
index 9a22f6dd61..cadf246543 100644
--- a/images/breeze/output-commands-hash.txt
+++ b/images/breeze/output-commands-hash.txt
@@ -2,4 +2,4 @@
 # This file is automatically generated by pre-commit. If you have a conflict 
with this file
 # Please do not solve it but run `breeze regenerate-command-images`.
 # This command should fix the conflict and regenerate help images that you 
have conflict with.
-e5f34a68b51a9a83e96830bdf837e33f
+d07fe7a09a846de917cda7820a8ede9d
diff --git a/images/breeze/output-shell.svg b/images/breeze/output-shell.svg
index 2c29bda22a..f81354da6a 100644
--- a/images/breeze/output-shell.svg
+++ b/images/breeze/output-shell.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 1245.6" 
xmlns="http://www.w3.org/2000/svg";>
+<svg class="rich-terminal" viewBox="0 0 1482 1270.0" 
xmlns="http://www.w3.org/2000/svg";>
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,237 +19,241 @@
         font-weight: 700;
     }
 
-    .terminal-1533840119-matrix {
+    .terminal-3207900274-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-1533840119-title {
+    .terminal-3207900274-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-1533840119-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-1533840119-r2 { fill: #c5c8c6 }
-.terminal-1533840119-r3 { fill: #d0b344;font-weight: bold }
-.terminal-1533840119-r4 { fill: #868887 }
-.terminal-1533840119-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-1533840119-r6 { fill: #98a84b;font-weight: bold }
-.terminal-1533840119-r7 { fill: #8d7b39 }
+    .terminal-3207900274-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-3207900274-r2 { fill: #c5c8c6 }
+.terminal-3207900274-r3 { fill: #d0b344;font-weight: bold }
+.terminal-3207900274-r4 { fill: #868887 }
+.terminal-3207900274-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-3207900274-r6 { fill: #98a84b;font-weight: bold }
+.terminal-3207900274-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-1533840119-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="1194.6" />
+    <clipPath id="terminal-3207900274-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="1219.0" />
     </clipPath>
-    <clipPath id="terminal-1533840119-line-0">
+    <clipPath id="terminal-3207900274-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-1">
+<clipPath id="terminal-3207900274-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-2">
+<clipPath id="terminal-3207900274-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-3">
+<clipPath id="terminal-3207900274-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-4">
+<clipPath id="terminal-3207900274-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-5">
+<clipPath id="terminal-3207900274-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-6">
+<clipPath id="terminal-3207900274-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-7">
+<clipPath id="terminal-3207900274-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-8">
+<clipPath id="terminal-3207900274-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-9">
+<clipPath id="terminal-3207900274-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-10">
+<clipPath id="terminal-3207900274-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-11">
+<clipPath id="terminal-3207900274-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-12">
+<clipPath id="terminal-3207900274-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-13">
+<clipPath id="terminal-3207900274-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-14">
+<clipPath id="terminal-3207900274-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-15">
+<clipPath id="terminal-3207900274-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-16">
+<clipPath id="terminal-3207900274-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-17">
+<clipPath id="terminal-3207900274-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-18">
+<clipPath id="terminal-3207900274-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-19">
+<clipPath id="terminal-3207900274-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-20">
+<clipPath id="terminal-3207900274-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-21">
+<clipPath id="terminal-3207900274-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-22">
+<clipPath id="terminal-3207900274-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-23">
+<clipPath id="terminal-3207900274-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-24">
+<clipPath id="terminal-3207900274-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-25">
+<clipPath id="terminal-3207900274-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-26">
+<clipPath id="terminal-3207900274-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-27">
+<clipPath id="terminal-3207900274-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-28">
+<clipPath id="terminal-3207900274-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-29">
+<clipPath id="terminal-3207900274-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-30">
+<clipPath id="terminal-3207900274-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-31">
+<clipPath id="terminal-3207900274-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-32">
+<clipPath id="terminal-3207900274-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-33">
+<clipPath id="terminal-3207900274-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-34">
+<clipPath id="terminal-3207900274-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-35">
+<clipPath id="terminal-3207900274-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-36">
+<clipPath id="terminal-3207900274-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-37">
+<clipPath id="terminal-3207900274-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-38">
+<clipPath id="terminal-3207900274-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-39">
+<clipPath id="terminal-3207900274-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-40">
+<clipPath id="terminal-3207900274-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-41">
+<clipPath id="terminal-3207900274-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-42">
+<clipPath id="terminal-3207900274-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-43">
+<clipPath id="terminal-3207900274-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-44">
+<clipPath id="terminal-3207900274-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-45">
+<clipPath id="terminal-3207900274-line-45">
     <rect x="0" y="1099.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-46">
+<clipPath id="terminal-3207900274-line-46">
     <rect x="0" y="1123.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-1533840119-line-47">
+<clipPath id="terminal-3207900274-line-47">
     <rect x="0" y="1148.3" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-3207900274-line-48">
+    <rect x="0" y="1172.7" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" 
x="1" y="1" width="1480" height="1243.6" rx="8"/><text 
class="terminal-1533840119-title" fill="#c5c8c6" text-anchor="middle" x="740" 
y="27">Command:&#160;shell</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" 
x="1" y="1" width="1480" height="1268" rx="8"/><text 
class="terminal-3207900274-title" fill="#c5c8c6" text-anchor="middle" x="740" 
y="27">Command:&#160;shell</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" 
clip-path="url(#terminal-1533840119-clip-terminal)">
+    <g transform="translate(9, 41)" 
clip-path="url(#terminal-3207900274-clip-terminal)">
     
-    <g class="terminal-1533840119-matrix">
-    <text class="terminal-1533840119-r2" x="1464" y="20" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-0)">
-</text><text class="terminal-1533840119-r3" x="12.2" y="44.4" 
textLength="85.4" 
clip-path="url(#terminal-1533840119-line-1)">Usage:&#160;</text><text 
class="terminal-1533840119-r1" x="97.6" y="44.4" textLength="463.6" 
clip-path="url(#terminal-1533840119-line-1)">breeze&#160;shell&#160;[OPTIONS]&#160;[EXTRA_ARGS]...</text><text
 class="terminal-1533840119-r2" x="1464" y="44.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-1)">
-</text><text class="terminal-1533840119-r2" x="1464" y="68.8" 
textLength="12.2" clip-path="url(#terminal-1533840119-line-2)">
-</text><text class="terminal-1533840119-r2" x="12.2" y="93.2" 
textLength="1061.4" 
clip-path="url(#terminal-1533840119-line-3)">Enter&#160;breeze.py&#160;environment.&#160;this&#160;is&#160;the&#160;default&#160;command&#160;use&#160;when&#160;no&#160;other&#160;is&#160;selected.</text><text
 class="terminal-1533840119-r2" x="1464" y="93.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-3)">
-</text><text class="terminal-1533840119-r2" x="1464" y="117.6" 
textLength="12.2" clip-path="url(#terminal-1533840119-line-4)">
-</text><text class="terminal-1533840119-r4" x="0" y="142" textLength="24.4" 
clip-path="url(#terminal-1533840119-line-5)">╭─</text><text 
class="terminal-1533840119-r4" x="24.4" y="142" textLength="1415.2" 
clip-path="url(#terminal-1533840119-line-5)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-1533840119-r4" x="1439.6" y="142" textLength="24.4" 
clip-path="url(#terminal-153384 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="166.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-6)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="166.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-6)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="166.4" textLength="85.4" 
clip-path="url(#terminal-1533840119-line-6)">-python</text><text 
class="terminal-1533840119-r6" x="305" y="166.4" textLength="24.4" 
clip-path="url(#terminal-153 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="190.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-7)">│</text><text 
class="terminal-1533840119-r4" x="353.8" y="190.8" textLength="732" 
clip-path="url(#terminal-1533840119-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="215.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-8)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="215.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-8)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="215.2" textLength="97.6" 
clip-path="url(#terminal-1533840119-line-8)">-backend</text><text 
class="terminal-1533840119-r6" x="305" y="215.2" textLength="24.4" 
clip-path="url(#terminal-15 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="239.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-9)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="239.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-9)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="239.6" textLength="109.8" 
clip-path="url(#terminal-1533840119-line-9)">-postgres</text><text 
class="terminal-1533840119-r5" x="146.4" y="239.6" textLength="97.6" 
clip-path="url(#termina [...]
-</text><text class="terminal-1533840119-r4" x="0" y="264" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-10)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="264" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-10)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="264" textLength="73.2" 
clip-path="url(#terminal-1533840119-line-10)">-mysql</text><text 
class="terminal-1533840119-r5" x="109.8" y="264" textLength="97.6" 
clip-path="url(#terminal-1533840 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="288.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-11)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="288.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-11)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="288.4" textLength="73.2" 
clip-path="url(#terminal-1533840119-line-11)">-mssql</text><text 
class="terminal-1533840119-r5" x="109.8" y="288.4" textLength="97.6" 
clip-path="url(#terminal [...]
-</text><text class="terminal-1533840119-r4" x="0" y="312.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-12)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="312.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-12)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="312.8" textLength="146.4" 
clip-path="url(#terminal-1533840119-line-12)">-integration</text><text 
class="terminal-1533840119-r2" x="353.8" y="312.8" textLength="1085.8" 
clip-path="url( [...]
-</text><text class="terminal-1533840119-r4" x="0" y="337.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-13)">│</text><text 
class="terminal-1533840119-r7" x="353.8" y="337.2" textLength="1085.8" 
clip-path="url(#terminal-1533840119-line-13)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;&#160;&#160;</text><text
 class="terminal-1533840119-r4" x="1 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="361.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-14)">│</text><text 
class="terminal-1533840119-r7" x="353.8" y="361.6" textLength="1085.8" 
clip-path="url(#terminal-1533840119-line-14)">all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="386" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-15)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="386" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-15)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="386" textLength="97.6" 
clip-path="url(#terminal-1533840119-line-15)">-forward</text><text 
class="terminal-1533840119-r5" x="134.2" y="386" textLength="146.4" 
clip-path="url(#terminal-1533 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="410.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-16)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="410.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-16)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="410.4" textLength="36.6" 
clip-path="url(#terminal-1533840119-line-16)">-db</text><text 
class="terminal-1533840119-r5" x="73.2" y="410.4" textLength="73.2" 
clip-path="url(#terminal-153 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="434.8" textLength="1464" 
clip-path="url(#terminal-1533840119-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-1533840119-r2" x="1464" y="434.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-17)">
-</text><text class="terminal-1533840119-r4" x="0" y="459.2" textLength="24.4" 
clip-path="url(#terminal-1533840119-line-18)">╭─</text><text 
class="terminal-1533840119-r4" x="24.4" y="459.2" textLength="1415.2" 
clip-path="url(#terminal-1533840119-line-18)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-1533840119-r4" x="1439.6" y="459.2" textLength="24.4" 
clip-path="ur [...]
-</text><text class="terminal-1533840119-r4" x="0" y="483.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-19)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="483.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-19)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="483.6" textLength="48.8" 
clip-path="url(#terminal-1533840119-line-19)">-use</text><text 
class="terminal-1533840119-r5" x="85.4" y="483.6" textLength="195.2" 
clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="508" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-20)">│</text><text 
class="terminal-1533840119-r2" x="390.4" y="508" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-20)">`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages&#160;or&#160;sdist&#160;packages&#160;</text><text
 class="terminal-1533840119-r4" x="1451.8" y="508" textLength="12.2" clip-path 
[...]
-</text><text class="terminal-1533840119-r4" x="0" y="532.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-21)">│</text><text 
class="terminal-1533840119-r2" x="390.4" y="532.4" textLength="573.4" 
clip-path="url(#terminal-1533840119-line-21)">available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;</text><text
 class="terminal-1533840119-r5" x="963.8" y="532.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-21)">-</text><text class="terminal-153 
[...]
-</text><text class="terminal-1533840119-r4" x="0" y="556.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-22)">│</text><text 
class="terminal-1533840119-r7" x="390.4" y="556.8" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-22)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="581.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-23)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="581.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-23)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="581.2" textLength="97.6" 
clip-path="url(#terminal-1533840119-line-23)">-airflow</text><text 
class="terminal-1533840119-r5" x="134.2" y="581.2" textLength="85.4" 
clip-path="url(#termin [...]
-</text><text class="terminal-1533840119-r4" x="0" y="605.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-24)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="605.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-24)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="605.6" textLength="48.8" 
clip-path="url(#terminal-1533840119-line-24)">-use</text><text 
class="terminal-1533840119-r5" x="85.4" y="605.6" textLength="231.8" 
clip-path="url(#terminal-1 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="630" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-25)">│</text><text 
class="terminal-1533840119-r2" x="390.4" y="630" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-25)">entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="654.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-26)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="654.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-26)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="654.4" textLength="97.6" 
clip-path="url(#terminal-1533840119-line-26)">-package</text><text 
class="terminal-1533840119-r5" x="134.2" y="654.4" textLength="85.4" 
clip-path="url(#termin [...]
-</text><text class="terminal-1533840119-r4" x="0" y="678.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-27)">│</text><text 
class="terminal-1533840119-r4" x="390.4" y="678.8" textLength="658.8" 
clip-path="url(#terminal-1533840119-line-27)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="703.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-28)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="703.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-28)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="703.2" textLength="73.2" 
clip-path="url(#terminal-1533840119-line-28)">-force</text><text 
class="terminal-1533840119-r5" x="109.8" y="703.2" textLength="73.2" 
clip-path="url(#terminal [...]
-</text><text class="terminal-1533840119-r4" x="0" y="727.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-29)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="727.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-29)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="727.6" textLength="73.2" 
clip-path="url(#terminal-1533840119-line-29)">-mount</text><text 
class="terminal-1533840119-r5" x="109.8" y="727.6" textLength="97.6" 
clip-path="url(#terminal [...]
-</text><text class="terminal-1533840119-r4" x="0" y="752" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-30)">│</text><text 
class="terminal-1533840119-r2" x="390.4" y="752" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-30)">selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="776.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-31)">│</text><text 
class="terminal-1533840119-r7" x="390.4" y="776.4" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-31)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="800.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-32)">│</text><text 
class="terminal-1533840119-r4" x="390.4" y="800.8" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-32)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="825.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-33)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="825.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-33)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="825.2" textLength="85.4" 
clip-path="url(#terminal-1533840119-line-33)">-debian</text><text 
class="terminal-1533840119-r5" x="122" y="825.2" textLength="97.6" 
clip-path="url(#terminal- [...]
-</text><text class="terminal-1533840119-r4" x="0" y="849.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-34)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="849.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-34)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="849.6" textLength="73.2" 
clip-path="url(#terminal-1533840119-line-34)">-image</text><text 
class="terminal-1533840119-r5" x="109.8" y="849.6" textLength="48.8" 
clip-path="url(#terminal [...]
-</text><text class="terminal-1533840119-r4" x="0" y="874" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-35)">│</text><text 
class="terminal-1533840119-r2" x="390.4" y="874" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-35)">when&#160;using&#160;to&#160;run&#160;shell&#160;or&#160;tests)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="898.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-36)">│</text><text 
class="terminal-1533840119-r7" x="390.4" y="898.4" textLength="1049.2" 
clip-path="url(#terminal-1533840119-line-36)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="922.8" textLength="1464" 
clip-path="url(#terminal-1533840119-line-37)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-1533840119-r2" x="1464" y="922.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-37)">
-</text><text class="terminal-1533840119-r4" x="0" y="947.2" textLength="24.4" 
clip-path="url(#terminal-1533840119-line-38)">╭─</text><text 
class="terminal-1533840119-r4" x="24.4" y="947.2" textLength="1415.2" 
clip-path="url(#terminal-1533840119-line-38)">&#160;Options&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-1533840119-r4" x="1439.6" y="947.2" textLength="24.4" 
clip-path="url(#terminal-153 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="971.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-39)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="971.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-39)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="971.6" textLength="97.6" 
clip-path="url(#terminal-1533840119-line-39)">-verbose</text><text 
class="terminal-1533840119-r6" x="427" y="971.6" textLength="24.4" 
clip-path="url(#terminal [...]
-</text><text class="terminal-1533840119-r4" x="0" y="996" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-40)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="996" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-40)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="996" textLength="48.8" 
clip-path="url(#terminal-1533840119-line-40)">-dry</text><text 
class="terminal-1533840119-r5" x="85.4" y="996" textLength="48.8" 
clip-path="url(#terminal-1533840119 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-41)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-41)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="1020.4" textLength="85.4" 
clip-path="url(#terminal-1533840119-line-41)">-github</text><text 
class="terminal-1533840119-r5" x="122" y="1020.4" textLength="134.2" 
clip-path="url(#term [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1044.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-42)">│</text><text 
class="terminal-1533840119-r4" x="475.8" y="1044.8" textLength="585.6" 
clip-path="url(#terminal-1533840119-line-42)">[default:&#160;apache/airflow]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text
 class="terminal-1533840119-r4" x="1451.8" y="1044.8" te [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1069.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-43)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="1069.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-43)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="1069.2" textLength="97.6" 
clip-path="url(#terminal-1533840119-line-43)">-airflow</text><text 
class="terminal-1533840119-r5" x="134.2" y="1069.2" textLength="268.4" 
clip-path="url(#t [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1093.6" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-44)">│</text><text 
class="terminal-1533840119-r2" x="475.8" y="1093.6" textLength="963.8" 
clip-path="url(#terminal-1533840119-line-44)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text
 class="terminal-1533840119-r4" x="1451.8" y="1093.6" textLength="12.2" 
clip-pat [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1118" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-45)">│</text><text 
class="terminal-1533840119-r7" x="475.8" y="1118" textLength="963.8" 
clip-path="url(#terminal-1533840119-line-45)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1142.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-46)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="1142.4" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-46)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="1142.4" textLength="85.4" 
clip-path="url(#terminal-1533840119-line-46)">-answer</text><text 
class="terminal-1533840119-r6" x="427" y="1142.4" textLength="24.4" 
clip-path="url(#termi [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1166.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-47)">│</text><text 
class="terminal-1533840119-r5" x="24.4" y="1166.8" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-47)">-</text><text 
class="terminal-1533840119-r5" x="36.6" y="1166.8" textLength="61" 
clip-path="url(#terminal-1533840119-line-47)">-help</text><text 
class="terminal-1533840119-r6" x="427" y="1166.8" textLength="24.4" 
clip-path="url(#terminal- [...]
-</text><text class="terminal-1533840119-r4" x="0" y="1191.2" textLength="1464" 
clip-path="url(#terminal-1533840119-line-48)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-1533840119-r2" x="1464" y="1191.2" textLength="12.2" 
clip-path="url(#terminal-1533840119-line-48)">
+    <g class="terminal-3207900274-matrix">
+    <text class="terminal-3207900274-r2" x="1464" y="20" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-0)">
+</text><text class="terminal-3207900274-r3" x="12.2" y="44.4" 
textLength="85.4" 
clip-path="url(#terminal-3207900274-line-1)">Usage:&#160;</text><text 
class="terminal-3207900274-r1" x="97.6" y="44.4" textLength="463.6" 
clip-path="url(#terminal-3207900274-line-1)">breeze&#160;shell&#160;[OPTIONS]&#160;[EXTRA_ARGS]...</text><text
 class="terminal-3207900274-r2" x="1464" y="44.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-1)">
+</text><text class="terminal-3207900274-r2" x="1464" y="68.8" 
textLength="12.2" clip-path="url(#terminal-3207900274-line-2)">
+</text><text class="terminal-3207900274-r2" x="12.2" y="93.2" 
textLength="1061.4" 
clip-path="url(#terminal-3207900274-line-3)">Enter&#160;breeze.py&#160;environment.&#160;this&#160;is&#160;the&#160;default&#160;command&#160;use&#160;when&#160;no&#160;other&#160;is&#160;selected.</text><text
 class="terminal-3207900274-r2" x="1464" y="93.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-3)">
+</text><text class="terminal-3207900274-r2" x="1464" y="117.6" 
textLength="12.2" clip-path="url(#terminal-3207900274-line-4)">
+</text><text class="terminal-3207900274-r4" x="0" y="142" textLength="24.4" 
clip-path="url(#terminal-3207900274-line-5)">╭─</text><text 
class="terminal-3207900274-r4" x="24.4" y="142" textLength="1415.2" 
clip-path="url(#terminal-3207900274-line-5)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-3207900274-r4" x="1439.6" y="142" textLength="24.4" 
clip-path="url(#terminal-320790 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="166.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-6)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="166.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-6)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="166.4" textLength="85.4" 
clip-path="url(#terminal-3207900274-line-6)">-python</text><text 
class="terminal-3207900274-r6" x="305" y="166.4" textLength="24.4" 
clip-path="url(#terminal-320 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="190.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-7)">│</text><text 
class="terminal-3207900274-r4" x="353.8" y="190.8" textLength="732" 
clip-path="url(#terminal-3207900274-line-7)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="215.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-8)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="215.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-8)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="215.2" textLength="97.6" 
clip-path="url(#terminal-3207900274-line-8)">-backend</text><text 
class="terminal-3207900274-r6" x="305" y="215.2" textLength="24.4" 
clip-path="url(#terminal-32 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="239.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-9)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="239.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-9)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="239.6" textLength="109.8" 
clip-path="url(#terminal-3207900274-line-9)">-postgres</text><text 
class="terminal-3207900274-r5" x="146.4" y="239.6" textLength="97.6" 
clip-path="url(#termina [...]
+</text><text class="terminal-3207900274-r4" x="0" y="264" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-10)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="264" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-10)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="264" textLength="73.2" 
clip-path="url(#terminal-3207900274-line-10)">-mysql</text><text 
class="terminal-3207900274-r5" x="109.8" y="264" textLength="97.6" 
clip-path="url(#terminal-3207900 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="288.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-11)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="288.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-11)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="288.4" textLength="73.2" 
clip-path="url(#terminal-3207900274-line-11)">-mssql</text><text 
class="terminal-3207900274-r5" x="109.8" y="288.4" textLength="97.6" 
clip-path="url(#terminal [...]
+</text><text class="terminal-3207900274-r4" x="0" y="312.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-12)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="312.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-12)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="312.8" textLength="146.4" 
clip-path="url(#terminal-3207900274-line-12)">-integration</text><text 
class="terminal-3207900274-r2" x="353.8" y="312.8" textLength="1085.8" 
clip-path="url( [...]
+</text><text class="terminal-3207900274-r4" x="0" y="337.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-13)">│</text><text 
class="terminal-3207900274-r7" x="353.8" y="337.2" textLength="1085.8" 
clip-path="url(#terminal-3207900274-line-13)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino&#160;|&#160;&#160;&#160;</text><text
 class="terminal-3207900274-r4" x="1 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="361.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-14)">│</text><text 
class="terminal-3207900274-r7" x="353.8" y="361.6" textLength="1085.8" 
clip-path="url(#terminal-3207900274-line-14)">all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="386" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-15)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="386" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-15)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="386" textLength="97.6" 
clip-path="url(#terminal-3207900274-line-15)">-forward</text><text 
class="terminal-3207900274-r5" x="134.2" y="386" textLength="146.4" 
clip-path="url(#terminal-3207 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="410.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-16)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="410.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-16)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="410.4" textLength="36.6" 
clip-path="url(#terminal-3207900274-line-16)">-db</text><text 
class="terminal-3207900274-r5" x="73.2" y="410.4" textLength="73.2" 
clip-path="url(#terminal-320 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="434.8" textLength="1464" 
clip-path="url(#terminal-3207900274-line-17)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-3207900274-r2" x="1464" y="434.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-17)">
+</text><text class="terminal-3207900274-r4" x="0" y="459.2" textLength="24.4" 
clip-path="url(#terminal-3207900274-line-18)">╭─</text><text 
class="terminal-3207900274-r4" x="24.4" y="459.2" textLength="1415.2" 
clip-path="url(#terminal-3207900274-line-18)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-3207900274-r4" x="1439.6" y="459.2" textLength="24.4" 
clip-path="ur [...]
+</text><text class="terminal-3207900274-r4" x="0" y="483.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-19)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="483.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-19)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="483.6" textLength="48.8" 
clip-path="url(#terminal-3207900274-line-19)">-use</text><text 
class="terminal-3207900274-r5" x="85.4" y="483.6" textLength="195.2" 
clip-path="url(#terminal-3 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="508" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-20)">│</text><text 
class="terminal-3207900274-r2" x="390.4" y="508" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-20)">`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages&#160;or&#160;sdist&#160;packages&#160;</text><text
 class="terminal-3207900274-r4" x="1451.8" y="508" textLength="12.2" clip-path 
[...]
+</text><text class="terminal-3207900274-r4" x="0" y="532.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-21)">│</text><text 
class="terminal-3207900274-r2" x="390.4" y="532.4" textLength="573.4" 
clip-path="url(#terminal-3207900274-line-21)">available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;</text><text
 class="terminal-3207900274-r5" x="963.8" y="532.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-21)">-</text><text class="terminal-320 
[...]
+</text><text class="terminal-3207900274-r4" x="0" y="556.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-22)">│</text><text 
class="terminal-3207900274-r7" x="390.4" y="556.8" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-22)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="581.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-23)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="581.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-23)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="581.2" textLength="97.6" 
clip-path="url(#terminal-3207900274-line-23)">-airflow</text><text 
class="terminal-3207900274-r5" x="134.2" y="581.2" textLength="85.4" 
clip-path="url(#termin [...]
+</text><text class="terminal-3207900274-r4" x="0" y="605.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-24)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="605.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-24)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="605.6" textLength="48.8" 
clip-path="url(#terminal-3207900274-line-24)">-use</text><text 
class="terminal-3207900274-r5" x="85.4" y="605.6" textLength="231.8" 
clip-path="url(#terminal-3 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="630" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-25)">│</text><text 
class="terminal-3207900274-r2" x="390.4" y="630" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-25)">entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="654.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-26)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="654.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-26)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="654.4" textLength="97.6" 
clip-path="url(#terminal-3207900274-line-26)">-package</text><text 
class="terminal-3207900274-r5" x="134.2" y="654.4" textLength="85.4" 
clip-path="url(#termin [...]
+</text><text class="terminal-3207900274-r4" x="0" y="678.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-27)">│</text><text 
class="terminal-3207900274-r4" x="390.4" y="678.8" textLength="658.8" 
clip-path="url(#terminal-3207900274-line-27)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="703.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-28)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="703.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-28)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="703.2" textLength="73.2" 
clip-path="url(#terminal-3207900274-line-28)">-force</text><text 
class="terminal-3207900274-r5" x="109.8" y="703.2" textLength="73.2" 
clip-path="url(#terminal [...]
+</text><text class="terminal-3207900274-r4" x="0" y="727.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-29)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="727.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-29)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="727.6" textLength="73.2" 
clip-path="url(#terminal-3207900274-line-29)">-mount</text><text 
class="terminal-3207900274-r5" x="109.8" y="727.6" textLength="97.6" 
clip-path="url(#terminal [...]
+</text><text class="terminal-3207900274-r4" x="0" y="752" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-30)">│</text><text 
class="terminal-3207900274-r2" x="390.4" y="752" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-30)">selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="776.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-31)">│</text><text 
class="terminal-3207900274-r7" x="390.4" y="776.4" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-31)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="800.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-32)">│</text><text 
class="terminal-3207900274-r4" x="390.4" y="800.8" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-32)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="825.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-33)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="825.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-33)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="825.2" textLength="85.4" 
clip-path="url(#terminal-3207900274-line-33)">-debian</text><text 
class="terminal-3207900274-r5" x="122" y="825.2" textLength="97.6" 
clip-path="url(#terminal- [...]
+</text><text class="terminal-3207900274-r4" x="0" y="849.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-34)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="849.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-34)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="849.6" textLength="73.2" 
clip-path="url(#terminal-3207900274-line-34)">-image</text><text 
class="terminal-3207900274-r5" x="109.8" y="849.6" textLength="48.8" 
clip-path="url(#terminal [...]
+</text><text class="terminal-3207900274-r4" x="0" y="874" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-35)">│</text><text 
class="terminal-3207900274-r2" x="390.4" y="874" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-35)">when&#160;using&#160;to&#160;run&#160;shell&#160;or&#160;tests)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="898.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-36)">│</text><text 
class="terminal-3207900274-r7" x="390.4" y="898.4" textLength="1049.2" 
clip-path="url(#terminal-3207900274-line-36)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="922.8" textLength="1464" 
clip-path="url(#terminal-3207900274-line-37)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-3207900274-r2" x="1464" y="922.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-37)">
+</text><text class="terminal-3207900274-r4" x="0" y="947.2" textLength="24.4" 
clip-path="url(#terminal-3207900274-line-38)">╭─</text><text 
class="terminal-3207900274-r4" x="24.4" y="947.2" textLength="1415.2" 
clip-path="url(#terminal-3207900274-line-38)">&#160;Options&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-3207900274-r4" x="1439.6" y="947.2" textLength="24.4" 
clip-path="url(#terminal-320 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="971.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-39)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="971.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-39)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="971.6" textLength="97.6" 
clip-path="url(#terminal-3207900274-line-39)">-verbose</text><text 
class="terminal-3207900274-r6" x="427" y="971.6" textLength="24.4" 
clip-path="url(#terminal [...]
+</text><text class="terminal-3207900274-r4" x="0" y="996" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-40)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="996" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-40)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="996" textLength="48.8" 
clip-path="url(#terminal-3207900274-line-40)">-dry</text><text 
class="terminal-3207900274-r5" x="85.4" y="996" textLength="48.8" 
clip-path="url(#terminal-3207900274 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-41)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-41)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="1020.4" textLength="109.8" 
clip-path="url(#terminal-3207900274-line-41)">-platform</text><text 
class="terminal-3207900274-r2" x="475.8" y="1020.4" textLength="329.4" 
clip-path="url( [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1044.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-42)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="1044.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-42)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="1044.8" textLength="85.4" 
clip-path="url(#terminal-3207900274-line-42)">-github</text><text 
class="terminal-3207900274-r5" x="122" y="1044.8" textLength="134.2" 
clip-path="url(#term [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1069.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-43)">│</text><text 
class="terminal-3207900274-r4" x="475.8" y="1069.2" textLength="585.6" 
clip-path="url(#terminal-3207900274-line-43)">[default:&#160;apache/airflow]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text
 class="terminal-3207900274-r4" x="1451.8" y="1069.2" te [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1093.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-44)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="1093.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-44)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="1093.6" textLength="97.6" 
clip-path="url(#terminal-3207900274-line-44)">-airflow</text><text 
class="terminal-3207900274-r5" x="134.2" y="1093.6" textLength="268.4" 
clip-path="url(#t [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1118" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-45)">│</text><text 
class="terminal-3207900274-r2" x="475.8" y="1118" textLength="963.8" 
clip-path="url(#terminal-3207900274-line-45)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text
 class="terminal-3207900274-r4" x="1451.8" y="1118" textLength="12.2" 
clip-path="url [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1142.4" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-46)">│</text><text 
class="terminal-3207900274-r7" x="475.8" y="1142.4" textLength="963.8" 
clip-path="url(#terminal-3207900274-line-46)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#
 [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1166.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-47)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="1166.8" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-47)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="1166.8" textLength="85.4" 
clip-path="url(#terminal-3207900274-line-47)">-answer</text><text 
class="terminal-3207900274-r6" x="427" y="1166.8" textLength="24.4" 
clip-path="url(#termi [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1191.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-48)">│</text><text 
class="terminal-3207900274-r5" x="24.4" y="1191.2" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-48)">-</text><text 
class="terminal-3207900274-r5" x="36.6" y="1191.2" textLength="61" 
clip-path="url(#terminal-3207900274-line-48)">-help</text><text 
class="terminal-3207900274-r6" x="427" y="1191.2" textLength="24.4" 
clip-path="url(#terminal- [...]
+</text><text class="terminal-3207900274-r4" x="0" y="1215.6" textLength="1464" 
clip-path="url(#terminal-3207900274-line-49)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-3207900274-r2" x="1464" y="1215.6" textLength="12.2" 
clip-path="url(#terminal-3207900274-line-49)">
 </text>
     </g>
     </g>
diff --git a/images/breeze/output-start-airflow.svg 
b/images/breeze/output-start-airflow.svg
index 3e21e1f5e9..0378b3a557 100644
--- a/images/breeze/output-start-airflow.svg
+++ b/images/breeze/output-start-airflow.svg
@@ -1,4 +1,4 @@
-<svg class="rich-terminal" viewBox="0 0 1482 1294.3999999999999" 
xmlns="http://www.w3.org/2000/svg";>
+<svg class="rich-terminal" viewBox="0 0 1482 1318.8" 
xmlns="http://www.w3.org/2000/svg";>
     <!-- Generated with Rich https://www.textualize.io -->
     <style>
 
@@ -19,245 +19,249 @@
         font-weight: 700;
     }
 
-    .terminal-2392640782-matrix {
+    .terminal-2298605193-matrix {
         font-family: Fira Code, monospace;
         font-size: 20px;
         line-height: 24.4px;
         font-variant-east-asian: full-width;
     }
 
-    .terminal-2392640782-title {
+    .terminal-2298605193-title {
         font-size: 18px;
         font-weight: bold;
         font-family: arial;
     }
 
-    .terminal-2392640782-r1 { fill: #c5c8c6;font-weight: bold }
-.terminal-2392640782-r2 { fill: #c5c8c6 }
-.terminal-2392640782-r3 { fill: #d0b344;font-weight: bold }
-.terminal-2392640782-r4 { fill: #868887 }
-.terminal-2392640782-r5 { fill: #68a0b3;font-weight: bold }
-.terminal-2392640782-r6 { fill: #98a84b;font-weight: bold }
-.terminal-2392640782-r7 { fill: #8d7b39 }
+    .terminal-2298605193-r1 { fill: #c5c8c6;font-weight: bold }
+.terminal-2298605193-r2 { fill: #c5c8c6 }
+.terminal-2298605193-r3 { fill: #d0b344;font-weight: bold }
+.terminal-2298605193-r4 { fill: #868887 }
+.terminal-2298605193-r5 { fill: #68a0b3;font-weight: bold }
+.terminal-2298605193-r6 { fill: #98a84b;font-weight: bold }
+.terminal-2298605193-r7 { fill: #8d7b39 }
     </style>
 
     <defs>
-    <clipPath id="terminal-2392640782-clip-terminal">
-      <rect x="0" y="0" width="1463.0" height="1243.3999999999999" />
+    <clipPath id="terminal-2298605193-clip-terminal">
+      <rect x="0" y="0" width="1463.0" height="1267.8" />
     </clipPath>
-    <clipPath id="terminal-2392640782-line-0">
+    <clipPath id="terminal-2298605193-line-0">
     <rect x="0" y="1.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-1">
+<clipPath id="terminal-2298605193-line-1">
     <rect x="0" y="25.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-2">
+<clipPath id="terminal-2298605193-line-2">
     <rect x="0" y="50.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-3">
+<clipPath id="terminal-2298605193-line-3">
     <rect x="0" y="74.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-4">
+<clipPath id="terminal-2298605193-line-4">
     <rect x="0" y="99.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-5">
+<clipPath id="terminal-2298605193-line-5">
     <rect x="0" y="123.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-6">
+<clipPath id="terminal-2298605193-line-6">
     <rect x="0" y="147.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-7">
+<clipPath id="terminal-2298605193-line-7">
     <rect x="0" y="172.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-8">
+<clipPath id="terminal-2298605193-line-8">
     <rect x="0" y="196.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-9">
+<clipPath id="terminal-2298605193-line-9">
     <rect x="0" y="221.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-10">
+<clipPath id="terminal-2298605193-line-10">
     <rect x="0" y="245.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-11">
+<clipPath id="terminal-2298605193-line-11">
     <rect x="0" y="269.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-12">
+<clipPath id="terminal-2298605193-line-12">
     <rect x="0" y="294.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-13">
+<clipPath id="terminal-2298605193-line-13">
     <rect x="0" y="318.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-14">
+<clipPath id="terminal-2298605193-line-14">
     <rect x="0" y="343.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-15">
+<clipPath id="terminal-2298605193-line-15">
     <rect x="0" y="367.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-16">
+<clipPath id="terminal-2298605193-line-16">
     <rect x="0" y="391.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-17">
+<clipPath id="terminal-2298605193-line-17">
     <rect x="0" y="416.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-18">
+<clipPath id="terminal-2298605193-line-18">
     <rect x="0" y="440.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-19">
+<clipPath id="terminal-2298605193-line-19">
     <rect x="0" y="465.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-20">
+<clipPath id="terminal-2298605193-line-20">
     <rect x="0" y="489.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-21">
+<clipPath id="terminal-2298605193-line-21">
     <rect x="0" y="513.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-22">
+<clipPath id="terminal-2298605193-line-22">
     <rect x="0" y="538.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-23">
+<clipPath id="terminal-2298605193-line-23">
     <rect x="0" y="562.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-24">
+<clipPath id="terminal-2298605193-line-24">
     <rect x="0" y="587.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-25">
+<clipPath id="terminal-2298605193-line-25">
     <rect x="0" y="611.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-26">
+<clipPath id="terminal-2298605193-line-26">
     <rect x="0" y="635.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-27">
+<clipPath id="terminal-2298605193-line-27">
     <rect x="0" y="660.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-28">
+<clipPath id="terminal-2298605193-line-28">
     <rect x="0" y="684.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-29">
+<clipPath id="terminal-2298605193-line-29">
     <rect x="0" y="709.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-30">
+<clipPath id="terminal-2298605193-line-30">
     <rect x="0" y="733.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-31">
+<clipPath id="terminal-2298605193-line-31">
     <rect x="0" y="757.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-32">
+<clipPath id="terminal-2298605193-line-32">
     <rect x="0" y="782.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-33">
+<clipPath id="terminal-2298605193-line-33">
     <rect x="0" y="806.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-34">
+<clipPath id="terminal-2298605193-line-34">
     <rect x="0" y="831.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-35">
+<clipPath id="terminal-2298605193-line-35">
     <rect x="0" y="855.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-36">
+<clipPath id="terminal-2298605193-line-36">
     <rect x="0" y="879.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-37">
+<clipPath id="terminal-2298605193-line-37">
     <rect x="0" y="904.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-38">
+<clipPath id="terminal-2298605193-line-38">
     <rect x="0" y="928.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-39">
+<clipPath id="terminal-2298605193-line-39">
     <rect x="0" y="953.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-40">
+<clipPath id="terminal-2298605193-line-40">
     <rect x="0" y="977.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-41">
+<clipPath id="terminal-2298605193-line-41">
     <rect x="0" y="1001.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-42">
+<clipPath id="terminal-2298605193-line-42">
     <rect x="0" y="1026.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-43">
+<clipPath id="terminal-2298605193-line-43">
     <rect x="0" y="1050.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-44">
+<clipPath id="terminal-2298605193-line-44">
     <rect x="0" y="1075.1" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-45">
+<clipPath id="terminal-2298605193-line-45">
     <rect x="0" y="1099.5" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-46">
+<clipPath id="terminal-2298605193-line-46">
     <rect x="0" y="1123.9" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-47">
+<clipPath id="terminal-2298605193-line-47">
     <rect x="0" y="1148.3" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-48">
+<clipPath id="terminal-2298605193-line-48">
     <rect x="0" y="1172.7" width="1464" height="24.65"/>
             </clipPath>
-<clipPath id="terminal-2392640782-line-49">
+<clipPath id="terminal-2298605193-line-49">
     <rect x="0" y="1197.1" width="1464" height="24.65"/>
             </clipPath>
+<clipPath id="terminal-2298605193-line-50">
+    <rect x="0" y="1221.5" width="1464" height="24.65"/>
+            </clipPath>
     </defs>
 
-    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" 
x="1" y="1" width="1480" height="1292.4" rx="8"/><text 
class="terminal-2392640782-title" fill="#c5c8c6" text-anchor="middle" x="740" 
y="27">Command:&#160;start-airflow</text>
+    <rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" 
x="1" y="1" width="1480" height="1316.8" rx="8"/><text 
class="terminal-2298605193-title" fill="#c5c8c6" text-anchor="middle" x="740" 
y="27">Command:&#160;start-airflow</text>
             <g transform="translate(26,22)">
             <circle cx="0" cy="0" r="7" fill="#ff5f57"/>
             <circle cx="22" cy="0" r="7" fill="#febc2e"/>
             <circle cx="44" cy="0" r="7" fill="#28c840"/>
             </g>
         
-    <g transform="translate(9, 41)" 
clip-path="url(#terminal-2392640782-clip-terminal)">
+    <g transform="translate(9, 41)" 
clip-path="url(#terminal-2298605193-clip-terminal)">
     
-    <g class="terminal-2392640782-matrix">
-    <text class="terminal-2392640782-r2" x="1464" y="20" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-0)">
-</text><text class="terminal-2392640782-r3" x="12.2" y="44.4" 
textLength="85.4" 
clip-path="url(#terminal-2392640782-line-1)">Usage:&#160;</text><text 
class="terminal-2392640782-r1" x="97.6" y="44.4" textLength="561.2" 
clip-path="url(#terminal-2392640782-line-1)">breeze&#160;start-airflow&#160;[OPTIONS]&#160;[EXTRA_ARGS]...</text><text
 class="terminal-2392640782-r2" x="1464" y="44.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-1)">
-</text><text class="terminal-2392640782-r2" x="1464" y="68.8" 
textLength="12.2" clip-path="url(#terminal-2392640782-line-2)">
-</text><text class="terminal-2392640782-r2" x="12.2" y="93.2" 
textLength="1000.4" 
clip-path="url(#terminal-2392640782-line-3)">Enter&#160;breeze.py&#160;environment&#160;and&#160;starts&#160;all&#160;Airflow&#160;components&#160;in&#160;the&#160;tmux&#160;session.</text><text
 class="terminal-2392640782-r2" x="1464" y="93.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-3)">
-</text><text class="terminal-2392640782-r2" x="1464" y="117.6" 
textLength="12.2" clip-path="url(#terminal-2392640782-line-4)">
-</text><text class="terminal-2392640782-r4" x="0" y="142" textLength="24.4" 
clip-path="url(#terminal-2392640782-line-5)">╭─</text><text 
class="terminal-2392640782-r4" x="24.4" y="142" textLength="1415.2" 
clip-path="url(#terminal-2392640782-line-5)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2392640782-r4" x="1439.6" y="142" textLength="24.4" 
clip-path="url(#terminal-239264 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="166.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-6)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="166.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-6)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="166.4" textLength="85.4" 
clip-path="url(#terminal-2392640782-line-6)">-python</text><text 
class="terminal-2392640782-r6" x="366" y="166.4" textLength="24.4" 
clip-path="url(#terminal-239 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="190.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-7)">│</text><text 
class="terminal-2392640782-r7" x="414.8" y="190.8" textLength="732" 
clip-path="url(#terminal-2392640782-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="215.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-8)">│</text><text 
class="terminal-2392640782-r4" x="414.8" y="215.2" textLength="732" 
clip-path="url(#terminal-2392640782-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="239.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-9)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="239.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-9)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="239.6" textLength="61" 
clip-path="url(#terminal-2392640782-line-9)">-load</text><text 
class="terminal-2392640782-r5" x="97.6" y="239.6" textLength="158.6" 
clip-path="url(#terminal-23926 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="264" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-10)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="264" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-10)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="264" textLength="61" 
clip-path="url(#terminal-2392640782-line-10)">-load</text><text 
class="terminal-2392640782-r5" x="97.6" y="264" textLength="244" 
clip-path="url(#terminal-2392640782-l [...]
-</text><text class="terminal-2392640782-r4" x="0" y="288.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-11)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="288.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-11)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="288.4" textLength="97.6" 
clip-path="url(#terminal-2392640782-line-11)">-backend</text><text 
class="terminal-2392640782-r6" x="366" y="288.4" textLength="24.4" 
clip-path="url(#terminal [...]
-</text><text class="terminal-2392640782-r4" x="0" y="312.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-12)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="312.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-12)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="312.8" textLength="109.8" 
clip-path="url(#terminal-2392640782-line-12)">-postgres</text><text 
class="terminal-2392640782-r5" x="146.4" y="312.8" textLength="97.6" 
clip-path="url(#term [...]
-</text><text class="terminal-2392640782-r4" x="0" y="337.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-13)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="337.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-13)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="337.2" textLength="73.2" 
clip-path="url(#terminal-2392640782-line-13)">-mysql</text><text 
class="terminal-2392640782-r5" x="109.8" y="337.2" textLength="97.6" 
clip-path="url(#terminal [...]
-</text><text class="terminal-2392640782-r4" x="0" y="361.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-14)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="361.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-14)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="361.6" textLength="73.2" 
clip-path="url(#terminal-2392640782-line-14)">-mssql</text><text 
class="terminal-2392640782-r5" x="109.8" y="361.6" textLength="97.6" 
clip-path="url(#terminal [...]
-</text><text class="terminal-2392640782-r4" x="0" y="386" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-15)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="386" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-15)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="386" textLength="146.4" 
clip-path="url(#terminal-2392640782-line-15)">-integration</text><text 
class="terminal-2392640782-r2" x="414.8" y="386" textLength="1024.8" 
clip-path="url(#termina [...]
-</text><text class="terminal-2392640782-r4" x="0" y="410.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-16)">│</text><text 
class="terminal-2392640782-r7" x="414.8" y="410.4" textLength="1024.8" 
clip-path="url(#terminal-2392640782-line-16)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino</text><text
 class="terminal-2392640782-r4" x="1451.8" y="410.4" textLeng [...]
-</text><text class="terminal-2392640782-r4" x="0" y="434.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-17)">│</text><text 
class="terminal-2392640782-r7" x="414.8" y="434.8" textLength="1024.8" 
clip-path="url(#terminal-2392640782-line-17)">|&#160;all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="459.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-18)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="459.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-18)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="459.2" textLength="97.6" 
clip-path="url(#terminal-2392640782-line-18)">-forward</text><text 
class="terminal-2392640782-r5" x="134.2" y="459.2" textLength="146.4" 
clip-path="url(#termi [...]
-</text><text class="terminal-2392640782-r4" x="0" y="483.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-19)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="483.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-19)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="483.6" textLength="36.6" 
clip-path="url(#terminal-2392640782-line-19)">-db</text><text 
class="terminal-2392640782-r5" x="73.2" y="483.6" textLength="73.2" 
clip-path="url(#terminal-239 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="508" textLength="1464" 
clip-path="url(#terminal-2392640782-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2392640782-r2" x="1464" y="508" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-20)">
-</text><text class="terminal-2392640782-r4" x="0" y="532.4" textLength="24.4" 
clip-path="url(#terminal-2392640782-line-21)">╭─</text><text 
class="terminal-2392640782-r4" x="24.4" y="532.4" textLength="1415.2" 
clip-path="url(#terminal-2392640782-line-21)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2392640782-r4" x="1439.6" y="532.4" textLength="24.4" 
clip-path="ur [...]
-</text><text class="terminal-2392640782-r4" x="0" y="556.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-22)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="556.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-22)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="556.8" textLength="48.8" 
clip-path="url(#terminal-2392640782-line-22)">-use</text><text 
class="terminal-2392640782-r5" x="85.4" y="556.8" textLength="195.2" 
clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="581.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-23)">│</text><text 
class="terminal-2392640782-r2" x="390.4" y="581.2" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-23)">`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages&#160;or&#160;sdist&#160;packages&#160;</text><text
 class="terminal-2392640782-r4" x="1451.8" y="581.2" textLength="12.2" cli [...]
-</text><text class="terminal-2392640782-r4" x="0" y="605.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-24)">│</text><text 
class="terminal-2392640782-r2" x="390.4" y="605.6" textLength="573.4" 
clip-path="url(#terminal-2392640782-line-24)">available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;</text><text
 class="terminal-2392640782-r5" x="963.8" y="605.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-24)">-</text><text class="terminal-239 
[...]
-</text><text class="terminal-2392640782-r4" x="0" y="630" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-25)">│</text><text 
class="terminal-2392640782-r7" x="390.4" y="630" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-25)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="654.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-26)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="654.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-26)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="654.4" textLength="97.6" 
clip-path="url(#terminal-2392640782-line-26)">-airflow</text><text 
class="terminal-2392640782-r5" x="134.2" y="654.4" textLength="85.4" 
clip-path="url(#termin [...]
-</text><text class="terminal-2392640782-r4" x="0" y="678.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-27)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="678.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-27)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="678.8" textLength="48.8" 
clip-path="url(#terminal-2392640782-line-27)">-use</text><text 
class="terminal-2392640782-r5" x="85.4" y="678.8" textLength="231.8" 
clip-path="url(#terminal-2 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="703.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-28)">│</text><text 
class="terminal-2392640782-r2" x="390.4" y="703.2" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-28)">entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="727.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-29)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="727.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-29)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="727.6" textLength="97.6" 
clip-path="url(#terminal-2392640782-line-29)">-package</text><text 
class="terminal-2392640782-r5" x="134.2" y="727.6" textLength="85.4" 
clip-path="url(#termin [...]
-</text><text class="terminal-2392640782-r4" x="0" y="752" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-30)">│</text><text 
class="terminal-2392640782-r4" x="390.4" y="752" textLength="658.8" 
clip-path="url(#terminal-2392640782-line-30)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="776.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-31)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="776.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-31)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="776.4" textLength="73.2" 
clip-path="url(#terminal-2392640782-line-31)">-force</text><text 
class="terminal-2392640782-r5" x="109.8" y="776.4" textLength="73.2" 
clip-path="url(#terminal [...]
-</text><text class="terminal-2392640782-r4" x="0" y="800.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-32)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="800.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-32)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="800.8" textLength="73.2" 
clip-path="url(#terminal-2392640782-line-32)">-mount</text><text 
class="terminal-2392640782-r5" x="109.8" y="800.8" textLength="97.6" 
clip-path="url(#terminal [...]
-</text><text class="terminal-2392640782-r4" x="0" y="825.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-33)">│</text><text 
class="terminal-2392640782-r2" x="390.4" y="825.2" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-33)">selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="849.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-34)">│</text><text 
class="terminal-2392640782-r7" x="390.4" y="849.6" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-34)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="874" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-35)">│</text><text 
class="terminal-2392640782-r4" x="390.4" y="874" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-35)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="898.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-36)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="898.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-36)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="898.4" textLength="73.2" 
clip-path="url(#terminal-2392640782-line-36)">-image</text><text 
class="terminal-2392640782-r5" x="109.8" y="898.4" textLength="48.8" 
clip-path="url(#terminal [...]
-</text><text class="terminal-2392640782-r4" x="0" y="922.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-37)">│</text><text 
class="terminal-2392640782-r2" x="390.4" y="922.8" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-37)">when&#160;using&#160;to&#160;run&#160;shell&#160;or&#160;tests)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="947.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-38)">│</text><text 
class="terminal-2392640782-r7" x="390.4" y="947.2" textLength="1049.2" 
clip-path="url(#terminal-2392640782-line-38)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="971.6" textLength="1464" 
clip-path="url(#terminal-2392640782-line-39)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2392640782-r2" x="1464" y="971.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-39)">
-</text><text class="terminal-2392640782-r4" x="0" y="996" textLength="24.4" 
clip-path="url(#terminal-2392640782-line-40)">╭─</text><text 
class="terminal-2392640782-r4" x="24.4" y="996" textLength="1415.2" 
clip-path="url(#terminal-2392640782-line-40)">&#160;Options&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2392640782-r4" x="1439.6" y="996" textLength="24.4" 
clip-path="url(#terminal-239264078 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-41)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-41)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="1020.4" textLength="48.8" 
clip-path="url(#terminal-2392640782-line-41)">-dry</text><text 
class="terminal-2392640782-r5" x="85.4" y="1020.4" textLength="48.8" 
clip-path="url(#termina [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1044.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-42)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="1044.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-42)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="1044.8" textLength="85.4" 
clip-path="url(#terminal-2392640782-line-42)">-github</text><text 
class="terminal-2392640782-r5" x="122" y="1044.8" textLength="134.2" 
clip-path="url(#term [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1069.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-43)">│</text><text 
class="terminal-2392640782-r4" x="475.8" y="1069.2" textLength="585.6" 
clip-path="url(#terminal-2392640782-line-43)">[default:&#160;apache/airflow]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text
 class="terminal-2392640782-r4" x="1451.8" y="1069.2" te [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1093.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-44)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="1093.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-44)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="1093.6" textLength="97.6" 
clip-path="url(#terminal-2392640782-line-44)">-airflow</text><text 
class="terminal-2392640782-r5" x="134.2" y="1093.6" textLength="268.4" 
clip-path="url(#t [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1118" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-45)">│</text><text 
class="terminal-2392640782-r2" x="475.8" y="1118" textLength="963.8" 
clip-path="url(#terminal-2392640782-line-45)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text
 class="terminal-2392640782-r4" x="1451.8" y="1118" textLength="12.2" 
clip-path="url [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1142.4" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-46)">│</text><text 
class="terminal-2392640782-r7" x="475.8" y="1142.4" textLength="963.8" 
clip-path="url(#terminal-2392640782-line-46)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#
 [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1166.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-47)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="1166.8" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-47)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="1166.8" textLength="85.4" 
clip-path="url(#terminal-2392640782-line-47)">-answer</text><text 
class="terminal-2392640782-r6" x="427" y="1166.8" textLength="24.4" 
clip-path="url(#termi [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1191.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-48)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="1191.2" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-48)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="1191.2" textLength="97.6" 
clip-path="url(#terminal-2392640782-line-48)">-verbose</text><text 
class="terminal-2392640782-r6" x="427" y="1191.2" textLength="24.4" 
clip-path="url(#term [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1215.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-49)">│</text><text 
class="terminal-2392640782-r5" x="24.4" y="1215.6" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-49)">-</text><text 
class="terminal-2392640782-r5" x="36.6" y="1215.6" textLength="61" 
clip-path="url(#terminal-2392640782-line-49)">-help</text><text 
class="terminal-2392640782-r6" x="427" y="1215.6" textLength="24.4" 
clip-path="url(#terminal- [...]
-</text><text class="terminal-2392640782-r4" x="0" y="1240" textLength="1464" 
clip-path="url(#terminal-2392640782-line-50)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2392640782-r2" x="1464" y="1240" textLength="12.2" 
clip-path="url(#terminal-2392640782-line-50)">
+    <g class="terminal-2298605193-matrix">
+    <text class="terminal-2298605193-r2" x="1464" y="20" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-0)">
+</text><text class="terminal-2298605193-r3" x="12.2" y="44.4" 
textLength="85.4" 
clip-path="url(#terminal-2298605193-line-1)">Usage:&#160;</text><text 
class="terminal-2298605193-r1" x="97.6" y="44.4" textLength="561.2" 
clip-path="url(#terminal-2298605193-line-1)">breeze&#160;start-airflow&#160;[OPTIONS]&#160;[EXTRA_ARGS]...</text><text
 class="terminal-2298605193-r2" x="1464" y="44.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-1)">
+</text><text class="terminal-2298605193-r2" x="1464" y="68.8" 
textLength="12.2" clip-path="url(#terminal-2298605193-line-2)">
+</text><text class="terminal-2298605193-r2" x="12.2" y="93.2" 
textLength="1000.4" 
clip-path="url(#terminal-2298605193-line-3)">Enter&#160;breeze.py&#160;environment&#160;and&#160;starts&#160;all&#160;Airflow&#160;components&#160;in&#160;the&#160;tmux&#160;session.</text><text
 class="terminal-2298605193-r2" x="1464" y="93.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-3)">
+</text><text class="terminal-2298605193-r2" x="1464" y="117.6" 
textLength="12.2" clip-path="url(#terminal-2298605193-line-4)">
+</text><text class="terminal-2298605193-r4" x="0" y="142" textLength="24.4" 
clip-path="url(#terminal-2298605193-line-5)">╭─</text><text 
class="terminal-2298605193-r4" x="24.4" y="142" textLength="1415.2" 
clip-path="url(#terminal-2298605193-line-5)">&#160;Basic&#160;flags&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2298605193-r4" x="1439.6" y="142" textLength="24.4" 
clip-path="url(#terminal-229860 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="166.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-6)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="166.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-6)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="166.4" textLength="85.4" 
clip-path="url(#terminal-2298605193-line-6)">-python</text><text 
class="terminal-2298605193-r6" x="366" y="166.4" textLength="24.4" 
clip-path="url(#terminal-229 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="190.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-7)">│</text><text 
class="terminal-2298605193-r7" x="414.8" y="190.8" textLength="732" 
clip-path="url(#terminal-2298605193-line-7)">(&gt;3.7&lt;&#160;|&#160;3.8&#160;|&#160;3.9&#160;|&#160;3.10)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="215.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-8)">│</text><text 
class="terminal-2298605193-r4" x="414.8" y="215.2" textLength="732" 
clip-path="url(#terminal-2298605193-line-8)">[default:&#160;3.7]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="239.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-9)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="239.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-9)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="239.6" textLength="61" 
clip-path="url(#terminal-2298605193-line-9)">-load</text><text 
class="terminal-2298605193-r5" x="97.6" y="239.6" textLength="158.6" 
clip-path="url(#terminal-22986 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="264" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-10)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="264" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-10)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="264" textLength="61" 
clip-path="url(#terminal-2298605193-line-10)">-load</text><text 
class="terminal-2298605193-r5" x="97.6" y="264" textLength="244" 
clip-path="url(#terminal-2298605193-l [...]
+</text><text class="terminal-2298605193-r4" x="0" y="288.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-11)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="288.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-11)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="288.4" textLength="97.6" 
clip-path="url(#terminal-2298605193-line-11)">-backend</text><text 
class="terminal-2298605193-r6" x="366" y="288.4" textLength="24.4" 
clip-path="url(#terminal [...]
+</text><text class="terminal-2298605193-r4" x="0" y="312.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-12)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="312.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-12)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="312.8" textLength="109.8" 
clip-path="url(#terminal-2298605193-line-12)">-postgres</text><text 
class="terminal-2298605193-r5" x="146.4" y="312.8" textLength="97.6" 
clip-path="url(#term [...]
+</text><text class="terminal-2298605193-r4" x="0" y="337.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-13)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="337.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-13)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="337.2" textLength="73.2" 
clip-path="url(#terminal-2298605193-line-13)">-mysql</text><text 
class="terminal-2298605193-r5" x="109.8" y="337.2" textLength="97.6" 
clip-path="url(#terminal [...]
+</text><text class="terminal-2298605193-r4" x="0" y="361.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-14)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="361.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-14)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="361.6" textLength="73.2" 
clip-path="url(#terminal-2298605193-line-14)">-mssql</text><text 
class="terminal-2298605193-r5" x="109.8" y="361.6" textLength="97.6" 
clip-path="url(#terminal [...]
+</text><text class="terminal-2298605193-r4" x="0" y="386" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-15)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="386" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-15)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="386" textLength="146.4" 
clip-path="url(#terminal-2298605193-line-15)">-integration</text><text 
class="terminal-2298605193-r2" x="414.8" y="386" textLength="1024.8" 
clip-path="url(#termina [...]
+</text><text class="terminal-2298605193-r4" x="0" y="410.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-16)">│</text><text 
class="terminal-2298605193-r7" x="414.8" y="410.4" textLength="1024.8" 
clip-path="url(#terminal-2298605193-line-16)">(cassandra&#160;|&#160;kerberos&#160;|&#160;mongo&#160;|&#160;openldap&#160;|&#160;pinot&#160;|&#160;rabbitmq&#160;|&#160;redis&#160;|&#160;statsd&#160;|&#160;trino</text><text
 class="terminal-2298605193-r4" x="1451.8" y="410.4" textLeng [...]
+</text><text class="terminal-2298605193-r4" x="0" y="434.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-17)">│</text><text 
class="terminal-2298605193-r7" x="414.8" y="434.8" textLength="1024.8" 
clip-path="url(#terminal-2298605193-line-17)">|&#160;all)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#16
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="459.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-18)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="459.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-18)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="459.2" textLength="97.6" 
clip-path="url(#terminal-2298605193-line-18)">-forward</text><text 
class="terminal-2298605193-r5" x="134.2" y="459.2" textLength="146.4" 
clip-path="url(#termi [...]
+</text><text class="terminal-2298605193-r4" x="0" y="483.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-19)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="483.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-19)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="483.6" textLength="36.6" 
clip-path="url(#terminal-2298605193-line-19)">-db</text><text 
class="terminal-2298605193-r5" x="73.2" y="483.6" textLength="73.2" 
clip-path="url(#terminal-229 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="508" textLength="1464" 
clip-path="url(#terminal-2298605193-line-20)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2298605193-r2" x="1464" y="508" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-20)">
+</text><text class="terminal-2298605193-r4" x="0" y="532.4" textLength="24.4" 
clip-path="url(#terminal-2298605193-line-21)">╭─</text><text 
class="terminal-2298605193-r4" x="24.4" y="532.4" textLength="1415.2" 
clip-path="url(#terminal-2298605193-line-21)">&#160;Advanced&#160;flag&#160;for&#160;running&#160;─────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2298605193-r4" x="1439.6" y="532.4" textLength="24.4" 
clip-path="ur [...]
+</text><text class="terminal-2298605193-r4" x="0" y="556.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-22)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="556.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-22)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="556.8" textLength="48.8" 
clip-path="url(#terminal-2298605193-line-22)">-use</text><text 
class="terminal-2298605193-r5" x="85.4" y="556.8" textLength="195.2" 
clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="581.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-23)">│</text><text 
class="terminal-2298605193-r2" x="390.4" y="581.2" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-23)">`sdist`&#160;if&#160;Airflow&#160;should&#160;be&#160;removed,&#160;installed&#160;from&#160;wheel&#160;packages&#160;or&#160;sdist&#160;packages&#160;</text><text
 class="terminal-2298605193-r4" x="1451.8" y="581.2" textLength="12.2" cli [...]
+</text><text class="terminal-2298605193-r4" x="0" y="605.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-24)">│</text><text 
class="terminal-2298605193-r2" x="390.4" y="605.6" textLength="573.4" 
clip-path="url(#terminal-2298605193-line-24)">available&#160;in&#160;dist&#160;folder&#160;respectively.&#160;Implies&#160;</text><text
 class="terminal-2298605193-r5" x="963.8" y="605.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-24)">-</text><text class="terminal-229 
[...]
+</text><text class="terminal-2298605193-r4" x="0" y="630" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-25)">│</text><text 
class="terminal-2298605193-r7" x="390.4" y="630" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-25)">(none&#160;|&#160;wheel&#160;|&#160;sdist&#160;|&#160;&lt;airflow_version&gt;)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="654.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-26)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="654.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-26)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="654.4" textLength="97.6" 
clip-path="url(#terminal-2298605193-line-26)">-airflow</text><text 
class="terminal-2298605193-r5" x="134.2" y="654.4" textLength="85.4" 
clip-path="url(#termin [...]
+</text><text class="terminal-2298605193-r4" x="0" y="678.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-27)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="678.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-27)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="678.8" textLength="48.8" 
clip-path="url(#terminal-2298605193-line-27)">-use</text><text 
class="terminal-2298605193-r5" x="85.4" y="678.8" textLength="231.8" 
clip-path="url(#terminal-2 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="703.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-28)">│</text><text 
class="terminal-2298605193-r2" x="390.4" y="703.2" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-28)">entering&#160;breeze.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="727.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-29)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="727.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-29)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="727.6" textLength="97.6" 
clip-path="url(#terminal-2298605193-line-29)">-package</text><text 
class="terminal-2298605193-r5" x="134.2" y="727.6" textLength="85.4" 
clip-path="url(#termin [...]
+</text><text class="terminal-2298605193-r4" x="0" y="752" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-30)">│</text><text 
class="terminal-2298605193-r4" x="390.4" y="752" textLength="658.8" 
clip-path="url(#terminal-2298605193-line-30)">[default:&#160;wheel]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="776.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-31)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="776.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-31)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="776.4" textLength="73.2" 
clip-path="url(#terminal-2298605193-line-31)">-force</text><text 
class="terminal-2298605193-r5" x="109.8" y="776.4" textLength="73.2" 
clip-path="url(#terminal [...]
+</text><text class="terminal-2298605193-r4" x="0" y="800.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-32)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="800.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-32)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="800.8" textLength="73.2" 
clip-path="url(#terminal-2298605193-line-32)">-mount</text><text 
class="terminal-2298605193-r5" x="109.8" y="800.8" textLength="97.6" 
clip-path="url(#terminal [...]
+</text><text class="terminal-2298605193-r4" x="0" y="825.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-33)">│</text><text 
class="terminal-2298605193-r2" x="390.4" y="825.2" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-33)">selected).&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="849.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-34)">│</text><text 
class="terminal-2298605193-r7" x="390.4" y="849.6" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-34)">(selected&#160;|&#160;all&#160;|&#160;skip&#160;|&#160;remove)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="874" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-35)">│</text><text 
class="terminal-2298605193-r4" x="390.4" y="874" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-35)">[default:&#160;selected]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="898.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-36)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="898.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-36)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="898.4" textLength="73.2" 
clip-path="url(#terminal-2298605193-line-36)">-image</text><text 
class="terminal-2298605193-r5" x="109.8" y="898.4" textLength="48.8" 
clip-path="url(#terminal [...]
+</text><text class="terminal-2298605193-r4" x="0" y="922.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-37)">│</text><text 
class="terminal-2298605193-r2" x="390.4" y="922.8" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-37)">when&#160;using&#160;to&#160;run&#160;shell&#160;or&#160;tests)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="947.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-38)">│</text><text 
class="terminal-2298605193-r7" x="390.4" y="947.2" textLength="1049.2" 
clip-path="url(#terminal-2298605193-line-38)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#1
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="971.6" textLength="1464" 
clip-path="url(#terminal-2298605193-line-39)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2298605193-r2" x="1464" y="971.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-39)">
+</text><text class="terminal-2298605193-r4" x="0" y="996" textLength="24.4" 
clip-path="url(#terminal-2298605193-line-40)">╭─</text><text 
class="terminal-2298605193-r4" x="24.4" y="996" textLength="1415.2" 
clip-path="url(#terminal-2298605193-line-40)">&#160;Options&#160;───────────────────────────────────────────────────────────────────────────────────────────────────────────</text><text
 class="terminal-2298605193-r4" x="1439.6" y="996" textLength="24.4" 
clip-path="url(#terminal-229860519 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-41)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="1020.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-41)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="1020.4" textLength="48.8" 
clip-path="url(#terminal-2298605193-line-41)">-dry</text><text 
class="terminal-2298605193-r5" x="85.4" y="1020.4" textLength="48.8" 
clip-path="url(#termina [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1044.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-42)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="1044.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-42)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="1044.8" textLength="109.8" 
clip-path="url(#terminal-2298605193-line-42)">-platform</text><text 
class="terminal-2298605193-r2" x="475.8" y="1044.8" textLength="329.4" 
clip-path="url( [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1069.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-43)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="1069.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-43)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="1069.2" textLength="85.4" 
clip-path="url(#terminal-2298605193-line-43)">-github</text><text 
class="terminal-2298605193-r5" x="122" y="1069.2" textLength="134.2" 
clip-path="url(#term [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1093.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-44)">│</text><text 
class="terminal-2298605193-r4" x="475.8" y="1093.6" textLength="585.6" 
clip-path="url(#terminal-2298605193-line-44)">[default:&#160;apache/airflow]&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;</text><text
 class="terminal-2298605193-r4" x="1451.8" y="1093.6" te [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1118" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-45)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="1118" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-45)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="1118" textLength="97.6" 
clip-path="url(#terminal-2298605193-line-45)">-airflow</text><text 
class="terminal-2298605193-r5" x="134.2" y="1118" textLength="268.4" 
clip-path="url(#terminal- [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1142.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-46)">│</text><text 
class="terminal-2298605193-r2" x="475.8" y="1142.4" textLength="963.8" 
clip-path="url(#terminal-2298605193-line-46)">specify&#160;constraints&#160;for&#160;the&#160;installed&#160;version&#160;and&#160;to&#160;find&#160;newer&#160;dependencies&#160;&#160;&#160;</text><text
 class="terminal-2298605193-r4" x="1451.8" y="1142.4" textLength="12.2" 
clip-pat [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1166.8" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-47)">│</text><text 
class="terminal-2298605193-r7" x="475.8" y="1166.8" textLength="963.8" 
clip-path="url(#terminal-2298605193-line-47)">(TEXT)&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#
 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1191.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-48)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="1191.2" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-48)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="1191.2" textLength="85.4" 
clip-path="url(#terminal-2298605193-line-48)">-answer</text><text 
class="terminal-2298605193-r6" x="427" y="1191.2" textLength="24.4" 
clip-path="url(#termi [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1215.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-49)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="1215.6" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-49)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="1215.6" textLength="97.6" 
clip-path="url(#terminal-2298605193-line-49)">-verbose</text><text 
class="terminal-2298605193-r6" x="427" y="1215.6" textLength="24.4" 
clip-path="url(#term [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1240" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-50)">│</text><text 
class="terminal-2298605193-r5" x="24.4" y="1240" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-50)">-</text><text 
class="terminal-2298605193-r5" x="36.6" y="1240" textLength="61" 
clip-path="url(#terminal-2298605193-line-50)">-help</text><text 
class="terminal-2298605193-r6" x="427" y="1240" textLength="24.4" 
clip-path="url(#terminal-22986051 [...]
+</text><text class="terminal-2298605193-r4" x="0" y="1264.4" textLength="1464" 
clip-path="url(#terminal-2298605193-line-51)">╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯</text><text
 class="terminal-2298605193-r2" x="1464" y="1264.4" textLength="12.2" 
clip-path="url(#terminal-2298605193-line-51)">
 </text>
     </g>
     </g>

Reply via email to