diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-05-26 11:26:19 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2022-05-26 13:07:19 -0600 |
commit | c7efe38e944d057f1f7cce82d8bb9559ebdd578c (patch) | |
tree | aa00d5d7ea4abfe0039a140925895996726b3310 /numpy/core/setup_common.py | |
parent | d75e7d8af2314947e0667b29cb304ab0377ee10f (diff) | |
download | numpy-c7efe38e944d057f1f7cce82d8bb9559ebdd578c.tar.gz |
MAINT: Fix some API versions.
These were missed in the 1.24.0 preparations.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 44fa0a651..81a86728a 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -31,6 +31,8 @@ C_ABI_VERSION = 0x01000009 # (*not* C_ABI_VERSION) would be increased. Whenever binary compatibility is # broken, both C_API_VERSION and C_ABI_VERSION should be increased. # +# The version needs to be kept in sync with that in cversions.txt. +# # 0x00000008 - 1.7.x # 0x00000009 - 1.8.x # 0x00000009 - 1.9.x @@ -45,8 +47,9 @@ C_ABI_VERSION = 0x01000009 # 0x0000000e - 1.20.x # 0x0000000e - 1.21.x # 0x0000000f - 1.22.x -# 0x0000000f - 1.23.x -C_API_VERSION = 0x0000000f +# 0x00000010 - 1.23.x +# 0x00000010 - 1.24.x +C_API_VERSION = 0x00000010 class MismatchCAPIWarning(Warning): pass |