[Bf-blender-cvs] [a4a5d85] master: Python: remove support for Python 3.4

Campbell Barton noreply at git.blender.org
Tue Dec 8 02:41:59 CET 2015


Commit: a4a5d857554921a6866ed2769adccb562dedb3f1
Author: Campbell Barton
Date:   Tue Dec 8 11:59:30 2015 +1100
Branches: master
https://developer.blender.org/rBa4a5d857554921a6866ed2769adccb562dedb3f1

Python: remove support for Python 3.4

===================================================================

M	source/blender/python/intern/bpy_util.h

===================================================================

diff --git a/source/blender/python/intern/bpy_util.h b/source/blender/python/intern/bpy_util.h
index 1ae00a7..63cb792 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;




More information about the Bf-blender-cvs mailing list