Merge pull request #1664 from ThomasWaldmann/hashindex-api-version-bumo

Hashindex api version bump
This commit is contained in:
TW 2016-09-30 21:31:05 +02:00 committed by GitHub
commit 8318f5ac0c
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ import os
cimport cython
from libc.stdint cimport uint32_t, UINT32_MAX, uint64_t
API_VERSION = 2
API_VERSION = 3
cdef extern from "_hashindex.c":

View file

@ -80,7 +80,7 @@ class PlaceholderError(Error):
def check_extension_modules():
from . import platform
if hashindex.API_VERSION != 2:
if hashindex.API_VERSION != 3:
raise ExtensionModuleError
if chunker.API_VERSION != 2:
raise ExtensionModuleError