mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Pass --managed-python when fetching versions
Tentatively closes https://github.com/ankitects/anki/issues/4227
This commit is contained in:
parent
c74a97a5fa
commit
416e7af02b
1 changed files with 1 additions and 1 deletions
|
@ -649,7 +649,7 @@ fn fetch_versions(state: &State) -> Result<Vec<String>> {
|
|||
|
||||
let mut cmd = Command::new(&state.uv_path);
|
||||
cmd.current_dir(&state.uv_install_root)
|
||||
.args(["run", "--no-project"])
|
||||
.args(["run", "--no-project", "--no-config", "--managed-python"])
|
||||
.arg(&versions_script);
|
||||
|
||||
let output = match cmd.utf8_output() {
|
||||
|
|
Loading…
Reference in a new issue