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>2012-12-06 06:42:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-06 06:42:42 +0400
commita864259d5099d936e4b973d6469e033da1c72d49 (patch)
tree9facb533f2eaa13be26cf53fd950e855a36dec0d /source/blender
parent4b102e93fb9a3cda97b5a5f5672a43807a19a18c (diff)
bump python requirement to 3.3
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/intern/bpy_util.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/source/blender/python/intern/bpy_util.h b/source/blender/python/intern/bpy_util.h
index 6aa50cf88de..b5f679b741f 100644
--- a/source/blender/python/intern/bpy_util.h
+++ b/source/blender/python/intern/bpy_util.h
@@ -27,16 +27,8 @@
#ifndef __BPY_UTIL_H__
#define __BPY_UTIL_H__
-#if PY_VERSION_HEX < 0x03020000
-# error "Python 3.2 or greater is required, you'll need to update your python."
-#endif
-
#if PY_VERSION_HEX < 0x03030000
-# ifdef _MSC_VER
-# pragma message("Python 3.2 will be deprecated soon, upgrade to Python 3.3.")
-# else
-# warning "Python 3.2 will be deprecated soon, upgrade to Python 3.3."
-# endif
+# error "Python 3.3 or greater is required, you'll need to update your python."
#endif
struct EnumPropertyItem;