Fix old python deprecation check in x.py

The warning suppression variable was not checked correctly.
This commit is contained in:
Nilstrieb 2023-06-24 19:45:42 +02:00
parent 69a63737fa
commit f799e78d77

2
x.py
View file

@ -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