From 870fcb3857ba36986d1d44ab4ac519897f8fb264 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 7 Sep 2020 22:58:16 +1000 Subject: Cleanup: change Python version checks to include newer versions --- source/blender/makesrna/rna_cleanup/rna_cleaner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesrna/rna_cleanup') diff --git a/source/blender/makesrna/rna_cleanup/rna_cleaner.py b/source/blender/makesrna/rna_cleanup/rna_cleaner.py index a936e6499bc..f107b5aee63 100755 --- a/source/blender/makesrna/rna_cleanup/rna_cleaner.py +++ b/source/blender/makesrna/rna_cleanup/rna_cleaner.py @@ -321,7 +321,7 @@ def main(): if __name__ == '__main__': import sys - if not sys.version.startswith("3"): - print("Incorrect python version, use python 3!") + if sys.version_info.major < 3: + print("Incorrect python version, use Python 3 or newer!") else: main() -- cgit v1.2.3