From cbe07d980ccc860cb01549272fc95c08912581d7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Oct 2017 23:50:34 +1100 Subject: Python: bump minimum version to 3.6 --- source/blender/python/intern/bpy_util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/python') 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; -- cgit v1.2.3