diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2012-10-08 15:41:16 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-10-08 15:41:16 -0600 |
commit | 926c5adbf74ee5e9b51fcc8fc8ffc0aa6ee309bc (patch) | |
tree | 71becddac587f3d298997c54f8a80483f9a64775 /numpy/core/setup_common.py | |
parent | 3f10c36339c0fe40e72378a990e6b3c5423805fb (diff) | |
parent | 65bd91defe76f225d27b58a21a89dc5dcf7c53c2 (diff) | |
download | numpy-926c5adbf74ee5e9b51fcc8fc8ffc0aa6ee309bc.tar.gz |
Merge PR 377: expose Mapiter in the numpy API.
* PR-377:
inplace passes tests
fixed tests
added initial mapiter tests
eliminated oned and fancy arguments to MapIterArray
changed error handling for clarity
removed expsure of mapiter type
changed the name of _swap_axes
gave MapIter an API
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 58876a8e4..83589695d 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -29,7 +29,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 = 0x00000007 +C_API_VERSION = 0x00000008 class MismatchCAPIWarning(Warning): pass |