8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b94585c commit 3882d65Copy full SHA for 3882d65
numpy/core/code_generators/cversions.txt
@@ -6,3 +6,6 @@
6
# version 4 added neighborhood iterators and PyArray_Correlate2
7
0x00000004 = 3d8940bf7b0d2a4e25be4338c14c3c85
8
0x00000005 = 77e2e846db87f25d7cf99f9d812076f0
9
+# Version 6 added new iterator, half float and casting functions,
10
+# PyArray_CountNonzero, PyArray_NewLikeArray and PyArray_MatrixProduct2.
11
+0x00000006 = 941534d1afbc085b996141e8027d1d1e
numpy/core/setup_common.py
@@ -29,7 +29,7 @@
29
# without breaking binary compatibility. In this case, only the C_API_VERSION
30
# (*not* C_ABI_VERSION) would be increased. Whenever binary compatibility is
31
# broken, both C_API_VERSION and C_ABI_VERSION should be increased.
32
-C_API_VERSION = 0x00000005
+C_API_VERSION = 0x00000006
33
34
class MismatchCAPIWarning(Warning):
35
pass
0 commit comments