summaryrefslogtreecommitdiff
path: root/numpy/core/setup_common.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-02-16 15:41:27 -0700
committerGitHub <noreply@github.com>2017-02-16 15:41:27 -0700
commitd55f40b1e48d5a5fbed80e00a140c9db6e19732f (patch)
tree733aa0ac1abdcc1aadf6452be5729b7b83095a09 /numpy/core/setup_common.py
parentba1ddc421eac7b5c3accb99a4c633490a1814838 (diff)
parent8e8ce442e8449916a93951093cdce16cec006bcc (diff)
downloadnumpy-d55f40b1e48d5a5fbed80e00a140c9db6e19732f.tar.gz
Merge pull request #8043 from pv/ufunc-copy-overlap
ENH: umath: ensure ufuncs are well-defined with memory overlapping inputs
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 596b3996c..357051cdb 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