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 b978e8bf128 modify python path to sys executable (#55367)
b978e8bf128 is described below
commit b978e8bf128862cfa84956e8f0456f4616d987ca
Author: Xch1 <[email protected]>
AuthorDate: Tue Sep 9 09:27:45 2025 +0800
modify python path to sys executable (#55367)
Signed-off-by: Xch1 <[email protected]>
Co-authored-by: Xch1 <[email protected]>
---
scripts/in_container/run_check_imports_in_providers.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/in_container/run_check_imports_in_providers.py
b/scripts/in_container/run_check_imports_in_providers.py
index 9a0ae942e10..1bec3ba70b8 100755
--- a/scripts/in_container/run_check_imports_in_providers.py
+++ b/scripts/in_container/run_check_imports_in_providers.py
@@ -36,7 +36,7 @@ def check_imports():
"analyze",
"graph",
"--python",
- "/usr/python/bin/python",
+ sys.executable,
]
console.print("Cmd", cmd)
import_tree_str = subprocess.check_output(cmd)