diff options
| author | Joshua Nelson <github@jyn.dev> | 2023-03-17 10:39:40 -0500 |
|---|---|---|
| committer | Jynn Nelson <jyn.nelson@redjack.com> | 2023-03-17 10:52:51 -0500 |
| commit | c7eccdaaee3cb5921d3d4cdb8dcb2639d4e7dec8 (patch) | |
| tree | 7c62881df52ee54ce31c0a0bb0773f1144713b7c /src/bootstrap/bootstrap_test.py | |
| parent | d808bc296dc147ddf0d17e1816be7b84ba51675a (diff) | |
| download | rust-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/bootstrap_test.py')
| -rw-r--r-- | src/bootstrap/bootstrap_test.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bootstrap/bootstrap_test.py b/src/bootstrap/bootstrap_test.py index 6a4a64a1ed5..20bd71f06e9 100644 --- a/src/bootstrap/bootstrap_test.py +++ b/src/bootstrap/bootstrap_test.py @@ -91,8 +91,7 @@ class GenerateAndParseConfig(unittest.TestCase): # Verify this is actually valid TOML. tomllib.loads(build.config_toml) except ImportError: - # too old a version of python - pass + print("warning: skipping TOML validation, need at least python 3.11", file=sys.stderr) return build def test_no_args(self): |
