Python: bump minimum version to 3.6

This commit is contained in:
2017-10-03 23:50:34 +11:00
parent 7ae02c2ddb
commit cbe07d980c
2 changed files with 3 additions and 3 deletions

View File

@@ -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;