File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 77
77
0x00000012 = 2b8f1f4da822491ff030b2b37dff07e3
78
78
# Version 19 (NumPy 2.1.0) Only header additions
79
79
# Version 19 (NumPy 2.2.0) No change
80
+ 0x00000013 = 2b8f1f4da822491ff030b2b37dff07e3
80
81
# Version 19 (NumPy 2.3.0)
81
- 0x00000013 = e56b74d32a934d085e7c3414cb9999b8,
82
+ 0x00000014 = e56b74d32a934d085e7c3414cb9999b8,
Original file line number Diff line number Diff line change 83
83
#define NPY_2_0_API_VERSION 0x00000012
84
84
#define NPY_2_1_API_VERSION 0x00000013
85
85
#define NPY_2_2_API_VERSION 0x00000013
86
- #define NPY_2_3_API_VERSION 0x00000013
86
+ #define NPY_2_3_API_VERSION 0x00000014
87
87
88
88
89
89
/*
172
172
#define NPY_FEATURE_VERSION_STRING "2.0"
173
173
#elif NPY_FEATURE_VERSION == NPY_2_1_API_VERSION
174
174
#define NPY_FEATURE_VERSION_STRING "2.1"
175
+ #elif NPY_FEATURE_VERSION == NPY_2_3_API_VERSION
176
+ #define NPY_FEATURE_VERSION_STRING "2.3"
175
177
#else
176
178
#error "Missing version string define for new NumPy version."
177
179
#endif
Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ C_ABI_VERSION = '0x02000000'
48
48
# 0x00000011 - 1.25.x
49
49
# 0x00000012 - 2.0.x
50
50
# 0x00000013 - 2.1.x
51
- C_API_VERSION = ' 0x00000013'
51
+ # 0x00000013 - 2.2.x
52
+ # 0x00000014 - 2.3.x
53
+ C_API_VERSION = ' 0x00000014'
52
54
53
55
# Check whether we have a mismatch between the set C API VERSION and the
54
56
# actual C API VERSION. Will raise a MismatchCAPIError if so.
You can’t perform that action at this time.
0 commit comments