diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-08-14 15:14:27 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-08-14 15:14:27 -0600 |
commit | 50989f75e132b42bc4146aa5dab576091e29ce2e (patch) | |
tree | 49996eda433739ecfe2e372f20c0b9530a2c12d9 /numpy/core/setup_common.py | |
parent | 38d987d392a87341f64528cdb55f7a746a7ba8d5 (diff) | |
download | numpy-50989f75e132b42bc4146aa5dab576091e29ce2e.tar.gz |
MAINT: Update API version and API hash.
In preparation for the 1.8 release, update the API version to
0x00000009 and the API hash to f99a02b75bd60205d1afe1eed080fd53.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 9a630225d..7f0ad8bfe 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -31,7 +31,10 @@ 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 = 0x00000008 +# +# 0x00000008 - 1.7.x +# 0x00000009 - 1.8.x +C_API_VERSION = 0x00000009 class MismatchCAPIWarning(Warning): pass |