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.9.18
3.10.13 3.10.13
3.11.7 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 temp_dir = assert_fs::TempDir::new()?;
let cache_dir = assert_fs::TempDir::new()?; let cache_dir = assert_fs::TempDir::new()?;
let bin = 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 venv = temp_dir.child(".venv");
let filter_venv = regex::escape(&venv.normalized_display().to_string()); let filter_venv = regex::escape(&venv.normalized_display().to_string());
@ -281,7 +281,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.12.2")
.arg("--cache-dir") .arg("--cache-dir")
.arg(cache_dir.path()) .arg(cache_dir.path())
.arg("--exclude-newer") .arg("--exclude-newer")
@ -294,7 +294,7 @@ fn create_venv_python_patch() -> Result<()> {
----- stdout ----- ----- stdout -----
----- stderr ----- ----- stderr -----
Using Python 3.12.1 interpreter at [PATH] Using Python 3.12.2 interpreter at [PATH]
Creating virtualenv at: /home/ferris/project/.venv Creating virtualenv at: /home/ferris/project/.venv
"### "###
); );

View File

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