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

jscheffl 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 f5cb0e816d2 [v3-1-test] fix(breeze): use prek from Breeze Python 
instead of system PATH (#62309) (#62317)
f5cb0e816d2 is described below

commit f5cb0e816d25297ff749aeb0bf38dda58450aa33
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Feb 22 10:34:49 2026 +0100

    [v3-1-test] fix(breeze): use prek from Breeze Python instead of system PATH 
(#62309) (#62317)
    
    (cherry picked from commit b4be3e5b5fdcde5d19aa6f1447d1c7935a9be3d0)
    
    Co-authored-by: abhijeets25012-tech <[email protected]>
    Co-authored-by: Abhijeet Raj Singh 
<[email protected]>
---
 dev/breeze/src/airflow_breeze/utils/run_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/breeze/src/airflow_breeze/utils/run_utils.py 
b/dev/breeze/src/airflow_breeze/utils/run_utils.py
index a1dd479bfd3..482cd6e49d1 100644
--- a/dev/breeze/src/airflow_breeze/utils/run_utils.py
+++ b/dev/breeze/src/airflow_breeze/utils/run_utils.py
@@ -222,7 +222,7 @@ def assert_prek_installed():
     need_to_reinstall_prek = False
     try:
         command_result = run_command(
-            ["prek", "--version"],
+            [python_executable, "-m", "prek", "--version"],
             capture_output=True,
             text=True,
             check=False,

Reply via email to