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

potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-1-test by this push:
     new 2f068bd9bda [v3-1-test] Fix check_files.py script after source tar was 
renamed (#58216) (#58220)
2f068bd9bda is described below

commit 2f068bd9bda134472a98e3649f71d32007b87b9c
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Nov 12 00:36:02 2025 +0100

    [v3-1-test] Fix check_files.py script after source tar was renamed (#58216) 
(#58220)
    
    (cherry picked from commit 7488ab997bda2997a8140dab6c0e759ff4a29040)
    
    Co-authored-by: Jens Scheffler <[email protected]>
---
 dev/check_files.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev/check_files.py b/dev/check_files.py
index 69d243667a2..58003d7b02b 100644
--- a/dev/check_files.py
+++ b/dev/check_files.py
@@ -147,7 +147,7 @@ def check_airflow_release(files: list[str], version: str):
     expected_files = expand_name_variations(
         [
             f"apache_airflow-{version}.tar.gz",
-            f"apache-airflow-{version}-source.tar.gz",
+            f"apache_airflow-{version}-source.tar.gz",
             f"apache_airflow-{version}-py3-none-any.whl",
             f"apache_airflow_core-{version}.tar.gz",
             f"apache_airflow_core-{version}-py3-none-any.whl",
@@ -296,9 +296,9 @@ def test_check_release_pass():
         "apache_airflow-2.8.1-py3-none-any.whl",
         "apache_airflow-2.8.1-py3-none-any.whl.asc",
         "apache_airflow-2.8.1-py3-none-any.whl.sha512",
-        "apache-airflow-2.8.1-source.tar.gz",
-        "apache-airflow-2.8.1-source.tar.gz.asc",
-        "apache-airflow-2.8.1-source.tar.gz.sha512",
+        "apache_airflow-2.8.1-source.tar.gz",
+        "apache_airflow-2.8.1-source.tar.gz.asc",
+        "apache_airflow-2.8.1-source.tar.gz.sha512",
         "apache_airflow-2.8.1.tar.gz",
         "apache_airflow-2.8.1.tar.gz.asc",
         "apache_airflow-2.8.1.tar.gz.sha512",
@@ -318,9 +318,9 @@ def test_check_release_fail():
         "apache_airflow-2.8.1-py3-none-any.whl",
         "apache_airflow-2.8.1-py3-none-any.whl.asc",
         "apache_airflow-2.8.1-py3-none-any.whl.sha512",
-        "apache-airflow-2.8.1-source.tar.gz",
-        "apache-airflow-2.8.1-source.tar.gz.asc",
-        "apache-airflow-2.8.1-source.tar.gz.sha512",
+        "apache_airflow-2.8.1-source.tar.gz",
+        "apache_airflow-2.8.1-source.tar.gz.asc",
+        "apache_airflow-2.8.1-source.tar.gz.sha512",
         "apache_airflow-2.8.1.tar.gz.asc",
         "apache_airflow-2.8.1.tar.gz.sha512",
         "apache_airflow_core-2.8.1-py3-none-any.whl",

Reply via email to