Help with error message

@jrjames83 Bodo supports accelerating Pandas apply functions directly (usually great speedups). For example, you can just pass a Series with array of array input to Bodo:

import numpy as np
import pandas as pd
import bodo

    
@bodo.jit
def process_values(arr):
    print(arr)

process_values(
    pd.Series(
        [np.array([8018361, 4645960]),
            np.array([1137555, 7763897]),
            np.array([7532943, 2248813]),
            np.array([5352737,   71466, 3590473, 5352738, 2712260])], dtype='object')) 

Could you post your original Pandas code with apply so I can suggest how to use Bodo?