diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-05-27 09:38:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 09:38:33 +0300 |
commit | 36e017194c32a53cf2965a513243cb3c348095df (patch) | |
tree | 1051393887e23e5895df03917a338b6bd7bd82c2 /numpy/core/setup_common.py | |
parent | 74ad82c422f53dcf8637970a6f399adb37c1a67a (diff) | |
parent | 2ea745b41e093fa4c100a074be9392a1b44d1f6f (diff) | |
download | numpy-36e017194c32a53cf2965a513243cb3c348095df.tar.gz |
Merge pull request #15508 from seberg/dtypemeta-new
API: Create Preliminary DTypeMeta class and np.dtype subclasses
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 63c4a76a9..72b59f9ae 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -40,7 +40,8 @@ C_ABI_VERSION = 0x01000009 # 0x0000000c - 1.14.x # 0x0000000c - 1.15.x # 0x0000000d - 1.16.x -C_API_VERSION = 0x0000000d +# 0x0000000e - 1.19.x +C_API_VERSION = 0x0000000e class MismatchCAPIWarning(Warning): pass |