### Description Per the [AutoARIMA pydoc](https://github.com/Nixtla/statsforecast/blob/862cace7a55d9ece478f66337e7ad3d9433ecd01/statsforecast/models.py#L208-L209) was expecting to be able to fit AutoARIMA as follows: ``` df = pd.read_csv('https://datasets-nixtla.s3.amazonaws.com/air-passengers.csv') sf = StatsForecast( models = [AutoARIMA(stepwise=False, parallel=True, season_length=12, num_cores=4, trace=False)], freq = 'M' ) sf.fit(df) ``` However, in doing so, receiving ```NotImplementedError: parallel=True``` (details in linked gist) ### Link https://gist.github.com/mjanson/5fa32e7b83fac034eb522e6035e0aa32