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

potiuk 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 7488ab997bd Fix check_files.py script after source tar was renamed 
(#58216)
7488ab997bd is described below

commit 7488ab997bda2997a8140dab6c0e759ff4a29040
Author: Jens Scheffler <[email protected]>
AuthorDate: Wed Nov 12 00:18:42 2025 +0100

    Fix check_files.py script after source tar was renamed (#58216)
---
 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 921c0d4b639..9c4113fe9f2 100644
--- a/dev/check_files.py
+++ b/dev/check_files.py
@@ -153,7 +153,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",
@@ -309,9 +309,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",
@@ -331,9 +331,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