Default of 'allow_pickle' is changed to Fales in numpy.load().
( https://docs.scipy.org/doc/numpy/reference/generated/numpy.load.html )
so, line 67 in combo/variables.py shoud be chaned as
66: def load(self, file_name):
67: data = np.load(file_name, allow_pickle=True)
Default of 'allow_pickle' is changed to Fales in numpy.load().
( https://docs.scipy.org/doc/numpy/reference/generated/numpy.load.html )
so, line 67 in combo/variables.py shoud be chaned as
66: def load(self, file_name):
67: data = np.load(file_name, allow_pickle=True)