Bump to Python 3.12.2

Contributors will need to update their bootstrapped versions
This commit is contained in:
Zanie 2024-02-17 12:02:10 -06:00
parent ee2e7bb9ae
commit 11161894ee
3 changed files with 5 additions and 5 deletions

View File

@ -3,4 +3,4 @@
3.9.18
3.10.13
3.11.7
3.12.1
3.12.2

View File

@ -269,7 +269,7 @@ fn create_venv_python_patch() -> Result<()> {
let temp_dir = assert_fs::TempDir::new()?;
let cache_dir = assert_fs::TempDir::new()?;
let bin =
create_bin_with_executables(&temp_dir, &["3.12.1"]).expect("Failed to create bin dir");
create_bin_with_executables(&temp_dir, &["3.12.2"]).expect("Failed to create bin dir");
let venv = temp_dir.child(".venv");
let filter_venv = regex::escape(&venv.normalized_display().to_string());
@ -281,7 +281,7 @@ fn create_venv_python_patch() -> Result<()> {
.arg("venv")
.arg(venv.as_os_str())
.arg("--python")
.arg("3.12.1")
.arg("3.12.2")
.arg("--cache-dir")
.arg(cache_dir.path())
.arg("--exclude-newer")
@ -294,7 +294,7 @@ fn create_venv_python_patch() -> Result<()> {
----- stdout -----
----- stderr -----
Using Python 3.12.1 interpreter at [PATH]
Using Python 3.12.2 interpreter at [PATH]
Creating virtualenv at: /home/ferris/project/.venv
"###
);

View File

@ -357,7 +357,7 @@ class Poetry(Suite):
"bench",
"--no-interaction",
"--python",
"3.12.1",
"3.12.2",
],
cwd=cwd,
stdout=subprocess.DEVNULL,