Use 3.8.18 instead of 3.12.1

Not available in GitHUb
This commit is contained in:
Zanie 2024-01-25 10:16:10 -06:00
parent c5294b9f08
commit 0e0f9fee5d
1 changed files with 2 additions and 2 deletions

View File

@ -211,7 +211,7 @@ fn create_venv_python_patch() -> Result<()> {
.arg("venv") .arg("venv")
.arg(venv.as_os_str()) .arg(venv.as_os_str())
.arg("--python") .arg("--python")
.arg("3.12.1") .arg("3.8.18")
.arg("--cache-dir") .arg("--cache-dir")
.arg(cache_dir.path()) .arg(cache_dir.path())
.current_dir(&temp_dir), @r###" .current_dir(&temp_dir), @r###"
@ -220,7 +220,7 @@ fn create_venv_python_patch() -> Result<()> {
----- stdout ----- ----- stdout -----
----- stderr ----- ----- stderr -----
Using Python 3.12.1 interpreter at [PATH] Using Python 3.8.18 interpreter at [PATH]
Creating virtual environment at: /home/ferris/project/.venv Creating virtual environment at: /home/ferris/project/.venv
"###); "###);
}); });