diff options
author | mattip <matti.picus@gmail.com> | 2018-10-07 18:48:54 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-10-07 18:48:54 +0300 |
commit | 1462362754f2053561d08eba5bc12960056104af (patch) | |
tree | 8b03f0d29c75980ac03292720a88715f17508c1e /numpy/core/setup_common.py | |
parent | a6a0b0f6f75a3f00879506191e42328e1314016b (diff) | |
download | numpy-1462362754f2053561d08eba5bc12960056104af.tar.gz |
ENH: increment and use NPY_API_VERSION in PyUFuncObject->version
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 356482b07..14fc94501 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -41,7 +41,8 @@ C_ABI_VERSION = 0x01000009 # 0x0000000b - 1.13.x # 0x0000000c - 1.14.x # 0x0000000c - 1.15.x -C_API_VERSION = 0x0000000c +# 0x0000000d - 1.16.x +C_API_VERSION = 0x0000000d class MismatchCAPIWarning(Warning): pass |