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>2015-12-08 03:59:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-08 04:35:29 +0300
commita4a5d857554921a6866ed2769adccb562dedb3f1 (patch)
tree993e5f330c400c9d8e3cbbfe9ee87d8d887ce34b
parent187b7257ea1cb9e826c3cb06e138ffd9b4467769 (diff)
Python: remove support for Python 3.4
-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 1ae00a7fb02..63cb7920bd1 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 < 0x03040000
-# error "Python 3.4 or greater is required, you'll need to update your python."
+#if PY_VERSION_HEX < 0x03050000
+# error "Python 3.5 or greater is required, you'll need to update your python."
#endif
struct EnumPropertyItem;