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:
authorCampbell Barton <ideasman42@gmail.com>2017-10-03 15:50:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-03 15:50:34 +0300
commitcbe07d980ccc860cb01549272fc95c08912581d7 (patch)
treed34677de614db9e881b764221b792d29dcd8419f /source/blender/python
parent7ae02c2ddb2ce72fd1c33a2f8aeeb26b20efd375 (diff)
Python: bump minimum version to 3.6
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_util.h b/source/blender/python/intern/bpy_util.h
index 63cb7920bd1..6000bf94aef 100644
--- a/source/blender/python/intern/bpy_util.h
+++ b/source/blender/python/intern/bpy_util.h
@@ -27,8 +27,8 @@
#ifndef __BPY_UTIL_H__
#define __BPY_UTIL_H__
-#if PY_VERSION_HEX < 0x03050000
-# error "Python 3.5 or greater is required, you'll need to update your python."
+#if PY_VERSION_HEX < 0x03060000
+# error "Python 3.6 or greater is required, you'll need to update your python."
#endif
struct EnumPropertyItem;