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

(airflow) branch main updated: Add 2.7.3 entry in compatibility matrix + small tweak for providers sbom (#35684)

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

pierrejeambrun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new d089e1a1bd Add 2.7.3 entry in compatibility matrix + small tweak for providers sbom (#35684)
d089e1a1bd is described below

commit d089e1a1bd6a9e7fd284490a99c71afa5dff457e
Author: Pierre Jeambrun <pi...@gmail.com>
AuthorDate: Fri Nov 17 07:10:13 2023 +0800

    Add 2.7.3 entry in compatibility matrix + small tweak for providers sbom (#35684)
---
 dev/breeze/src/airflow_breeze/commands/sbom_commands.py | 3 ---
 dev/breeze/src/airflow_breeze/global_constants.py       | 1 +
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev/breeze/src/airflow_breeze/commands/sbom_commands.py b/dev/breeze/src/airflow_breeze/commands/sbom_commands.py
index 1e01c9b7a9..ef53479659 100644
--- a/dev/breeze/src/airflow_breeze/commands/sbom_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/sbom_commands.py
@@ -229,9 +229,6 @@ def update_sbom_information(
         ) in list_providers_from_providers_requirements(airflow_site_archive_directory):
             destination_dir = provider_version_documentation_directory / "sbom"
 
-            if _dir_exists_warn_and_should_skip(destination_dir, force):
-                continue
-
             destination_dir.mkdir(parents=True, exist_ok=True)
 
             get_console().print(
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py b/dev/breeze/src/airflow_breeze/global_constants.py
index 1ea7940712..83ded0f66a 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -254,6 +254,7 @@ AIRFLOW_PYTHON_COMPATIBILITY_MATRIX = {
     "2.7.0": ["3.8", "3.9", "3.10", "3.11"],
     "2.7.1": ["3.8", "3.9", "3.10", "3.11"],
     "2.7.2": ["3.8", "3.9", "3.10", "3.11"],
+    "2.7.3": ["3.8", "3.9", "3.10", "3.11"],
 }
 
 DB_RESET = False