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>2019-02-04 13:58:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-04 14:00:30 +0300
commit7e358b61818d7c9a4d60c42266d7d2e5008ff4ea (patch)
tree6940fe1ea6e7fb8bc11c60f2a193e58c6c6a21b9 /source/blender/python
parent87aa456ea516f49c6029cf30f8f0dff16cbb58bc (diff)
Python: bump minimum version to 3.7
All platforms use 3.7 now, supporting both increases chance some scripts will fail on older versions.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_capi_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_capi_utils.h b/source/blender/python/intern/bpy_capi_utils.h
index f05d9e7631f..cd34d61ea7d 100644
--- a/source/blender/python/intern/bpy_capi_utils.h
+++ b/source/blender/python/intern/bpy_capi_utils.h
@@ -21,8 +21,8 @@
#ifndef __BPY_CAPI_UTILS_H__
#define __BPY_CAPI_UTILS_H__
-#if PY_VERSION_HEX < 0x03060000
-# error "Python 3.6 or greater is required, you'll need to update your python."
+#if PY_VERSION_HEX < 0x03070000
+# error "Python 3.7 or greater is required, you'll need to update your Python."
#endif
struct EnumPropertyItem;