This is an automated email from the ASF dual-hosted git repository.
jscheffl 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 b4be3e5b5fd fix(breeze): use prek from Breeze Python instead of system
PATH (#62309)
b4be3e5b5fd is described below
commit b4be3e5b5fdcde5d19aa6f1447d1c7935a9be3d0
Author: abhijeets25012-tech <[email protected]>
AuthorDate: Sun Feb 22 15:01:46 2026 +0530
fix(breeze): use prek from Breeze Python instead of system PATH (#62309)
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 a6aeb92dc67..8e55b71888f 100644
--- a/dev/breeze/src/airflow_breeze/utils/run_utils.py
+++ b/dev/breeze/src/airflow_breeze/utils/run_utils.py
@@ -230,7 +230,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,