From 0e0f9fee5de3bca73f7ca467df6cbc9499e9f963 Mon Sep 17 00:00:00 2001 From: Zanie Date: Thu, 25 Jan 2024 10:16:10 -0600 Subject: [PATCH] Use 3.8.18 instead of 3.12.1 Not available in GitHUb --- crates/puffin/tests/venv.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/puffin/tests/venv.rs b/crates/puffin/tests/venv.rs index ab7d35dd7..4a2dc501c 100644 --- a/crates/puffin/tests/venv.rs +++ b/crates/puffin/tests/venv.rs @@ -211,7 +211,7 @@ fn create_venv_python_patch() -> Result<()> { .arg("venv") .arg(venv.as_os_str()) .arg("--python") - .arg("3.12.1") + .arg("3.8.18") .arg("--cache-dir") .arg(cache_dir.path()) .current_dir(&temp_dir), @r###" @@ -220,7 +220,7 @@ fn create_venv_python_patch() -> Result<()> { ----- stdout ----- ----- 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 "###); });