Pmdarima Versions Save

A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.

v2.0.4

6 months ago
  • Add support for Python 3.12

v2.0.3

1 year ago
  • Fix a bug when generating permutations using numpy>=1.24.0. See #534
  • Fix a bug in transform when using scikit-learn>=1.2.0, addressing #539

v2.0.2

1 year ago

Add support for Python 3.11

v2.0.2rc1

1 year ago

Pre-release for version 2.0.2, including Python 3.11 support.

v2.0.1

1 year ago
  • Add support for macOS with M1 chip

v2.0.1rc1

1 year ago
  • Add support for macOS with M1 chip

v2.0.0

1 year ago

Potentially breaking changes:

  • Use of the exogenous keyword (deprecated in 1.8.0) will now raise a TypeError
    • Use of the sarimax_kwargs keyword (deprecated in 1.5.1) will now raise a TypeError
    • A falsey value for ARIMA's method argument (deprecated pre-1.5.0) will now raise a ValueError
    • A falsey value for ARIMA's maxiter argument will now raise a ValueError (warning since 1.5.0)
    • pmdarima is no longer built for 32-bit architectures
    • macOS images are built using macOS 11 instead of macOS 10.15

Other changes:

v1.8.5

2 years ago
  • Add support for Python 3.10
  • Remove support for Python 3.6 (EOL: 23 Dec 2021)

v1.8.4

2 years ago

Version 1.8.4

  • Add compatibility for statsmodels 0.13 and higher

v1.8.3

2 years ago

Version 1.8.3

  • Fix a bug in tsdisplay where a value of lag_max larger than the length of the series would create a cryptic numpy broadcasting error. This precondition will still cause an error, but now it is one the user can better understand. See #440

  • Change numpy pin to numpy>=1.19.3 (and build on lowest supported version) to no longer limit users' NumPy versions. This addresses #449

  • Fix a bug where scikit-learn version 1.0.0 was raising ValueError when calling if_delegate_has_method, addressing #454