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 4ea12a64275 Revert "fix(breeze): use prek from Breeze Python instead
of system PATH (#62309)" (#62332)
4ea12a64275 is described below
commit 4ea12a642753ac912b01467403e25f6276ef5878
Author: Jens Scheffler <[email protected]>
AuthorDate: Sun Feb 22 21:27:42 2026 +0100
Revert "fix(breeze): use prek from Breeze Python instead of system PATH
(#62309)" (#62332)
This reverts commit b4be3e5b5fdcde5d19aa6f1447d1c7935a9be3d0.
---
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 65dfe99aaff..0367304bd22 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(
- [python_executable, "-m", "prek", "--version"],
+ ["prek", "--version"],
capture_output=True,
text=True,
check=False,