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 bc3a750af47 Fix release cleanup for providers (#58082)
bc3a750af47 is described below

commit bc3a750af476b991ca34e6c696208f8e75ff99a7
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Nov 9 11:15:27 2025 +0100

    Fix release cleanup for providers (#58082)
    
    * Fix release cleanup for providers
    
    * Apply suggestion from @potiuk
---
 dev/breeze/src/airflow_breeze/commands/release_management_commands.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py 
b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
index 188e15548ed..9ab28c7173b 100644
--- a/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
+++ b/dev/breeze/src/airflow_breeze/commands/release_management_commands.py
@@ -1966,6 +1966,8 @@ def clean_old_provider_artifacts(
         os.chdir(directory)
 
         for file in glob.glob(f"*{suffix}"):
+            if "-source" in file:
+                continue
             versioned_file = split_version_and_suffix(file, suffix)
             package_types_dicts[versioned_file.type].append(versioned_file)
 

Reply via email to