diff options
author | Matti Picus <matti.picus@gmail.com> | 2018-10-19 11:30:07 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-19 11:30:07 +0300 |
commit | a2fb23aa0844731438e6b9c9d09644e48aa4900b (patch) | |
tree | 3d0585ca39046eeb8a0cdaf59b1e0aff4bb5ec04 /numpy/core/setup_common.py | |
parent | 1ba4173d20f16348f793c1d87f8cc03cd87588ad (diff) | |
parent | c8e15bafb0d811d8dd805ddf521d102eaac08079 (diff) | |
download | numpy-a2fb23aa0844731438e6b9c9d09644e48aa4900b.tar.gz |
Merge pull request #11175 from mhvk/gufunc-signature-modification2
ENH: Generalized ufunc signature expansion for frozen and flexible dimensions
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 e637dbc20..f837df112 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 |