Rollup merge of #113003 - Nilstrieb:uh-yeah-so-about-that-deprecation-warning, r=jyn514

Fix old python deprecation check in x.py

The warning suppression variable was not checked correctly.

I tested it with python 2.7 and it worked correctly.
This commit is contained in:
Guillaume Gomez 2023-06-24 20:26:47 +02:00 committed by GitHub
commit 4d9ba1ac2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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