Skip to content

Commit

Permalink
pmdarima to 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rsujeevan committed May 22, 2024
1 parent 289d97f commit 1439a0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion transformers/timeseries/auto_arima_forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class MyAutoArimaTransformer(CustomTimeSeriesTransformer):
_binary = False
_multiclass = False
_modules_needed_by_name = ['pmdarima==1.8.3']
_modules_needed_by_name = ['pmdarima==2.0.4']
_included_model_classes = None
_testing_can_skip_failure = False # ensure tested as if shouldn't fail
_lag_recipe_allowed = True
Expand Down
2 changes: 1 addition & 1 deletion transformers/timeseries/parallel_auto_arima_forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class MyParallelAutoArimaTransformer(CustomTimeSeriesTransformer):
"""Implementation of the ARIMA transformer using a pool of processes to fit models in parallel"""
_binary = False
_multiclass = False
_modules_needed_by_name = ['pmdarima==1.8.3']
_modules_needed_by_name = ['pmdarima==2.0.4']
_included_model_classes = None
_testing_can_skip_failure = False # ensure tested as if shouldn't fail
_lag_recipe_allowed = True
Expand Down

0 comments on commit 1439a0f

Please sign in to comment.