summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2010-02-15 23:13:16 +0000
committerTravis Oliphant <oliphant@enthought.com>2010-02-15 23:13:16 +0000
commit20ec480ff8979fce00ab076ef74893815bf88f4e (patch)
treeb6eda881cdb7050f6386f899cc2c7451acc3c505 /numpy/core/setup_common.py
parent29efc30b7b2290abf7c6d4d5eeddd5a97502098a (diff)
downloadnumpy-20ec480ff8979fce00ab076ef74893815bf88f4e.tar.gz
API and ABI changes: Removed BigArrayType, Fixed hasobject to an integer (and inserted an unused character for alignment) and renamed it to flags. Re-organized the ArrFuncs structure. Moved NPY_DATETIME and friends to their 'correct' place in the type order.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index f361996a4..aac9156ce 100644
--- a/numpy/core/setup_common.py
+++ b/numpy/core/setup_common.py
@@ -21,7 +21,7 @@ from distutils.ccompiler import CompileError
# Binary compatibility version number. This number is increased whenever the
# C-API is changed such that binary compatibility is broken, i.e. whenever a
# recompile of extension modules is needed.
-C_ABI_VERSION = 0x01000009
+C_ABI_VERSION = 0x02000000
# Minor API version. This number is increased whenever a change is made to the
# C-API -- whether it breaks binary compatibility or not. Some changes, such
@@ -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 = 0x00000004
+C_API_VERSION = 0x00000005
class MismatchCAPIWarning(Warning):
pass