diff options
author | David Cournapeau <cournape@gmail.com> | 2009-05-13 03:01:35 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-05-13 03:01:35 +0000 |
commit | 866336de09843829232ab76a6047e892e9fa9a65 (patch) | |
tree | 18eea2ee78b568e17d2d51a6cb7efe53e67ec59a /numpy/core/setup_common.py | |
parent | c3cef2607b05081b3a0f4de6a2ee254e5d31f448 (diff) | |
download | numpy-866336de09843829232ab76a6047e892e9fa9a65.tar.gz |
Update C API version: we forgot to update them after adding generalized ufunc and PyArray_Endianness.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 7268f0a88..fd08aa551 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -25,7 +25,7 @@ C_ABI_VERSION = 0x01000009 # without breaking binary compatibility. In this case, only the C_API_VERSION # (*not* C_ABI_VERSION) would be increased. Whenever binary compatibility is # broken, both C_API_VERSION and C_ABI_VERSION should be increased. -C_API_VERSION = 0x00000001 +C_API_VERSION = 0x00000002 class MismatchCAPIWarning(Warning): pass |