diff options
author | Allan Haldane <ealloc@gmail.com> | 2018-04-21 16:38:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-21 16:38:28 -0400 |
commit | e0b5e8740efe6d42c909c1374494e614592c65ab (patch) | |
tree | f6c92cec21db0e0492c9a7a2ec715961a88b96f7 /numpy/core/setup_common.py | |
parent | 09048a0e053e97078cad1d3070ff23580ef13562 (diff) | |
parent | fa9a74165479142e2c1671f871fe7c860146cd52 (diff) | |
download | numpy-e0b5e8740efe6d42c909c1374494e614592c65ab.tar.gz |
Merge pull request #9998 from mattip/nditer-as-context-manager
ENH: Nditer as context manager
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 f36d61f55..a8aba40bd 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -40,7 +40,8 @@ C_ABI_VERSION = 0x01000009 # 0x0000000a - 1.12.x # 0x0000000b - 1.13.x # 0x0000000c - 1.14.x -C_API_VERSION = 0x0000000c +# 0x0000000d - 1.15.x +C_API_VERSION = 0x0000000d class MismatchCAPIWarning(Warning): pass |