summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2017-01-19 22:57:26 +0100
committerPauli Virtanen <pav@iki.fi>2017-01-19 22:57:26 +0100
commitf4940fd0094a8ed3e14f9466ece291da0027c432 (patch)
tree782f4fcd42bc50002627391f7c7a13019712b5cd /numpy/core/setup_common.py
parentacedf6860823234460facf7957e42dc65ab5efad (diff)
downloadnumpy-f4940fd0094a8ed3e14f9466ece291da0027c432.tar.gz
MAINT: bump API version
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r--numpy/core/setup_common.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py
index 18066d991..31412a4c3 100644
--- a/numpy/core/setup_common.py
+++ b/numpy/core/setup_common.py
@@ -38,7 +38,8 @@ C_ABI_VERSION = 0x01000009
# 0x0000000a - 1.10.x
# 0x0000000a - 1.11.x
# 0x0000000a - 1.12.x
-C_API_VERSION = 0x0000000a
+# 0x0000000b - 1.13.x
+C_API_VERSION = 0x0000000b
class MismatchCAPIWarning(Warning):
pass