当我尝试使用带有--remove标志的django-haystack的update_index命令时,出现以下错误def isFibonaccy(inputList):
out = []
for i in inputList:
phi = 0.5 + 0.5 * math.sqrt(5.0)
a = phi * i
out.append(int(i == 0 or abs(round(a) - a) < 1.0 / i))
return out
print(isFibonaccy([4, 6, 8, 10, 12])) # -> [0, 0, 1, 0, 0]
我不确定是否是因为django-haystack与弹性版本6.2之间不兼容。如果是,是否有任何解决方法?