Python: bump minimum version to 3.7

All platforms use 3.7 now, supporting both increases chance some scripts
will fail on older versions.
This commit is contained in:
Campbell Barton
2019-02-04 21:58:34 +11:00
parent 87aa456ea5
commit 7e358b6181
2 changed files with 4 additions and 4 deletions

View File

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