summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorrgommers <ralf.gommers@googlemail.com>2011-03-09 11:04:22 +0800
committerrgommers <ralf.gommers@googlemail.com>2011-03-10 14:57:58 +0800
commit3882d65c42acf6d5fff8cc9b3f410bb3e49c8af8 (patch)
tree3b5fc64ceb3704aefaa5c3538d3b19fc884cd31a /numpy/core/setup_common.py
parentb94585c25f81d0d90d25d1ce9b2781f478606734 (diff)
downloadnumpy-3882d65c42acf6d5fff8cc9b3f410bb3e49c8af8.tar.gz
BLD: Increase C API version. Necessary because new C API functions were added.
This removes the MismatchCAPIWarning at the beginning of the build.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index 0a4f070f3..e88be40b0 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 = 0x00000005
+C_API_VERSION = 0x00000006
class MismatchCAPIWarning(Warning):
pass