Use python3.11 in CI to make sure toml is validated

This also fixes a regression from
https://github.com/rust-lang/rust/pull/106085 which stopped testing that
we support python2 in PR CI.
This commit is contained in:
Joshua Nelson
2023-03-17 10:39:40 -05:00
committed by Jynn Nelson
parent d808bc296d
commit c7eccdaaee
4 changed files with 7 additions and 7 deletions

View File

@@ -251,7 +251,7 @@ def parse_args(args):
if not found:
unknown_args.append(arg)
# Note: here and a few other places, we use [-1] to apply the *last* value
# passed. But if option-checking is enabled, then the known_args loop will
# also assert that options are only passed once.