Rollup merge of #155510 - Walnut356:python_path, r=jieyouxu

Update Tidy python executable path

Resolves https://github.com/rust-lang/rust/issues/155480

r? @Kobzol
This commit is contained in:
Jonathan Brouwer
2026-04-19 16:04:35 +02:00
committed by GitHub
+1 -1
View File
@@ -35,7 +35,7 @@
/// Path to find the python executable within a virtual environment
#[cfg(target_os = "windows")]
const REL_PY_PATH: &[&str] = &["Scripts", "python3.exe"];
const REL_PY_PATH: &[&str] = &["Scripts", "python.exe"];
#[cfg(not(target_os = "windows"))]
const REL_PY_PATH: &[&str] = &["bin", "python3"];