From f799e78d772abaf1df4c157b39d39b28d1602f41 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Sat, 24 Jun 2023 19:45:42 +0200 Subject: [PATCH] Fix old python deprecation check in x.py The warning suppression variable was not checked correctly. --- x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x.py b/x.py index 7163df5cfe9..ba959a3047e 100755 --- a/x.py +++ b/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