mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 14:23:45 +00:00
Fix old python deprecation check in x.py
The warning suppression variable was not checked correctly.
This commit is contained in:
parent
69a63737fa
commit
f799e78d77
2
x.py
2
x.py
@ -31,7 +31,7 @@ if __name__ == '__main__':
|
||||
|
||||
# soft deprecation of old python versions
|
||||
skip_check = os.environ.get("RUST_IGNORE_OLD_PYTHON") == "1"
|
||||
if major < 3 or (major == 3 and minor < 6):
|
||||
if not skip_check and (major < 3 or (major == 3 and minor < 6)):
|
||||
msg = cleandoc("""
|
||||
Using python {}.{} but >= 3.6 is recommended. Your python version
|
||||
should continue to work for the near future, but this will
|
||||
|
Loading…
Reference in New Issue
Block a user