Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild_files/cmake/cmake_consistency_check.py2
-rw-r--r--build_files/cmake/project_source_info.py4
-rwxr-xr-xsource/blender/makesrna/rna_cleanup/rna_cleaner.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/build_files/cmake/cmake_consistency_check.py b/build_files/cmake/cmake_consistency_check.py
index b4c91e6ba4f..cdf4058d394 100755
--- a/build_files/cmake/cmake_consistency_check.py
+++ b/build_files/cmake/cmake_consistency_check.py
@@ -21,7 +21,7 @@
# <pep8 compliant>
import sys
-if not sys.version.startswith("3"):
+if sys.version_info.major < 3:
print("\nPython3.x needed, found %s.\nAborting!\n" %
sys.version.partition(" ")[0])
sys.exit(1)
diff --git a/build_files/cmake/project_source_info.py b/build_files/cmake/project_source_info.py
index 6649f4620c8..f8067c216fd 100644
--- a/build_files/cmake/project_source_info.py
+++ b/build_files/cmake/project_source_info.py
@@ -25,8 +25,8 @@ __all__ = (
import sys
-if not sys.version.startswith("3"):
- print("\nPython3.x needed, found %s.\nAborting!\n" %
+if not sys.version_info.major < 3:
+ print("\nPython3.x or newer needed, found %s.\nAborting!\n" %
sys.version.partition(" ")[0])
sys.exit(1)
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()