mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-24 23:13:25 +00:00
crypto: bump API_VERSION to 1.3_01
This commit is contained in:
parent
ce247526c2
commit
900a812e9c
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ from cpython cimport PyMem_Malloc, PyMem_Free
|
|||
from cpython.buffer cimport PyBUF_SIMPLE, PyObject_GetBuffer, PyBuffer_Release
|
||||
from cpython.bytes cimport PyBytes_FromStringAndSize
|
||||
|
||||
API_VERSION = '1.2_01'
|
||||
API_VERSION = '1.3_01'
|
||||
|
||||
cdef extern from "openssl/crypto.h":
|
||||
int CRYPTO_memcmp(const void *a, const void *b, size_t len)
|
||||
|
|
|
@ -31,7 +31,7 @@ def check_extension_modules():
|
|||
raise ExtensionModuleError
|
||||
if compress.API_VERSION != '1.2_02':
|
||||
raise ExtensionModuleError
|
||||
if borg.crypto.low_level.API_VERSION != '1.2_01':
|
||||
if borg.crypto.low_level.API_VERSION != '1.3_01':
|
||||
raise ExtensionModuleError
|
||||
if item.API_VERSION != '1.2_01':
|
||||
raise ExtensionModuleError
|
||||
|
|
Loading…
Reference in a new issue