about summary refs log tree commit diff
path: root/src/bootstrap/configure.py
diff options
context:
space:
mode:
authorJoshua Nelson <github@jyn.dev>2023-03-17 10:39:40 -0500
committerJynn Nelson <jyn.nelson@redjack.com>2023-03-17 10:52:51 -0500
commitc7eccdaaee3cb5921d3d4cdb8dcb2639d4e7dec8 (patch)
tree7c62881df52ee54ce31c0a0bb0773f1144713b7c /src/bootstrap/configure.py
parentd808bc296dc147ddf0d17e1816be7b84ba51675a (diff)
downloadrust-c7eccdaaee3cb5921d3d4cdb8dcb2639d4e7dec8.tar.gz
rust-c7eccdaaee3cb5921d3d4cdb8dcb2639d4e7dec8.zip
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.
Diffstat (limited to 'src/bootstrap/configure.py')
-rwxr-xr-xsrc/bootstrap/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py
index dc2271bdf27..abd28b4005d 100755
--- a/src/bootstrap/configure.py
+++ b/src/bootstrap/configure.py
@@ -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.