Version 1.8.0
Version 1.8.0
-
Wheels are no longer built for pmdarima on Python <3.6, and backward-compatibility is no longer guaranteed for older python versions.
-
The
exogenous
argument has been deprecated in favor ofX
- See the RFC and the PR for more information. Beginning in version 2.0, theexogenous
argument will raise an error. -
Migrate random searches into the auto-solvers interface
-
Random searches now perform unit root tests to prevent models with near non-invertible parameters
-
The default value of
suppress_warnings
has changed toTrue
. The primary reason for this is that most warnings emitted come from unit root tests, which are very noisy.DeprecationWarnings
and other warnings generated from user input will still be emitted. -
Move
ModelFitWarning
frompmdarima.arima.warnings
topmdarima.warnings
-
Fix a bug where the
pmdarima.model_selection.RollingForecastCV
could produce too few splits for the given input data. -
Change pin for
setuptools
from<50.0.0
to!=50.0.0
, addressing #401 -
Change pin for
statsmodels
from<0.12.0
to!=0.12.0
, addressing #376