Skip to content

Commit

Permalink
Bump the bundled PBS versions to 20231002. (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaos authored Oct 30, 2023
1 parent cf47eff commit c609db0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package/pbt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ version = "0.13.0"
[[lift.interpreters]]
id = "cpython"
provider = "PythonBuildStandalone"
release = "20230507"
release = "20231002"
lazy = true
version = "3.8.16"
version = "3.8.18"

[[lift.files]]
name = "pex"
Expand Down
8 changes: 4 additions & 4 deletions package/scie-pants.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ version = "0.13.0"
[[lift.interpreters]]
id = "cpython38"
provider = "PythonBuildStandalone"
release = "20230507"
release = "20231002"
lazy = true
version = "3.8.16"
version = "3.8.18"

[[lift.interpreters]]
id = "cpython39"
provider = "PythonBuildStandalone"
release = "20230507"
release = "20231002"
lazy = true
version = "3.9.16"
version = "3.9.18"

[[lift.interpreter_groups]]
id = "cpython"
Expand Down
2 changes: 1 addition & 1 deletion package/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,7 @@ fn test_pants_bootstrap_urls(scie_pants_scie: &Path) {
}
});

let output = execute(&mut command.stdout(Stdio::piped())).unwrap();
let output = execute(command.stdout(Stdio::piped())).unwrap();
let stdout = decode_output(output.stdout).unwrap();
assert!(stdout.contains(pants_release));
}

0 comments on commit c609db0

Please sign in to comment.