Skip to main content

pmdarima

PyPI version CircleCI Mac and Windows Builds codecov Supported versions Downloads Downloads/Week

Pmdarima (originally pyramid-arima, for the anagram of 'py' + 'arima') is a statistical library designed to fill the void in Python's time series analysis capabilities. This includes:

  • The equivalent of R's auto.arima functionality
  • A collection of statistical tests of stationarity and seasonality
  • Time series utilities, such as differencing and inverse differencing
  • Numerous endogenous and exogenous transformers and featurizers, including Box-Cox and Fourier transformations
  • Seasonal time series decompositions
  • Cross-validation utilities
  • A rich collection of built-in time series datasets for prototyping and examples
  • Scikit-learn-esque pipelines to consolidate your estimators and promote productionization

Pmdarima wraps statsmodels under the hood, but is designed with an interface that's familiar to users coming from a scikit-learn background.

Installation

pip

Pmdarima has binary and source distributions for Windows, Mac and Linux (manylinux) on pypi under the package name pmdarima and can be downloaded via pip:

pip install pmdarima

conda

Pmdarima also has Mac and Linux builds available via conda and can be installed like so:

conda config --add channels conda-forge
conda config --set channel_priority strict
conda install pmdarima

Note: We do not maintain our own Conda binaries, they are maintained at https://github.com/conda-forge/pmdarima-feedstock. See that repo for further documentation on working with Pmdarima on Conda.

Quickstart Examples

Fitting a simple auto-ARIMA on the wineind dataset:

import pmdarima as pm
from pmdarima.model_selection import train_test_split
import numpy as np
import matplotlib.pyplot as plt

# Load/split your data
y = pm.datasets.load_wineind()
train, test = train_test_split(y, train_size=150)

# Fit your model
model = pm.auto_arima(train, seasonal=True, m=12)

# make your forecasts
forecasts = model.predict(test.shape[0])  # predict N steps into the future

# Visualize the forecasts (blue=train, green=forecasts)
x = np.arange(y.shape[0])
plt.plot(x[:150], train, c='blue')
plt.plot(x[150:], forecasts, c='green')
plt.show()
Wineind example

Fitting a more complex pipeline on the sunspots dataset, serializing it, and then loading it from disk to make predictions:

import pmdarima as pm
from pmdarima.model_selection import train_test_split
from pmdarima.pipeline import Pipeline
from pmdarima.preprocessing import BoxCoxEndogTransformer
import pickle

# Load/split your data
y = pm.datasets.load_sunspots()
train, test = train_test_split(y, train_size=2700)

# Define and fit your pipeline
pipeline = Pipeline([
    ('boxcox', BoxCoxEndogTransformer(lmbda2=1e-6)),  # lmbda2 avoids negative values
    ('arima', pm.AutoARIMA(seasonal=True, m=12,
                           suppress_warnings=True,
                           trace=True))
])

pipeline.fit(train)

# Serialize your model just like you would in scikit:
with open('model.pkl', 'wb') as pkl:
    pickle.dump(pipeline, pkl)
    
# Load it and make predictions seamlessly:
with open('model.pkl', 'rb') as pkl:
    mod = pickle.load(pkl)
    print(mod.predict(15))
# [25.20580375 25.05573898 24.4263037  23.56766793 22.67463049 21.82231043
# 21.04061069 20.33693017 19.70906027 19.1509862  18.6555793  18.21577243
# 17.8250318  17.47750614 17.16803394]

Availability

pmdarima is available on PyPi in pre-built Wheel files for Python 3.10+ for the following platforms:

  • Mac (64-bit)
  • Linux (64-bit manylinux)
  • Windows (64-bit)
    • 32-bit wheels are available for pmdarima versions below 2.0.0 and Python versions below 3.10

If a wheel doesn't exist for your platform, you can still pip install and it will build from the source distribution tarball, however you'll need cython>=0.29 and gcc (Mac/Linux) or MinGW (Windows) in order to build the package from source.

Note that legacy versions (<1.0.0) are available under the name "pyramid-arima" and can be pip installed via:

# Legacy warning:
$ pip install pyramid-arima
# python -c 'import pyramid;'

However, this is not recommended.

Documentation

All of your questions and more (including examples and guides) can be answered by the pmdarima documentation. If not, always feel free to file an issue.

Release files for pmdarima 2.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pmdarima 2.1.1
File Size Uploaded
pmdarima-2.1.1.tar.gz 1.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for pmdarima 2.1.1
File
pmdarima-2.1.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pmdarima-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pmdarima-2.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pmdarima-2.1.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pmdarima-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
pmdarima-2.1.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pmdarima-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pmdarima-2.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pmdarima-2.1.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pmdarima-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pmdarima-2.1.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pmdarima-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pmdarima-2.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pmdarima-2.1.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pmdarima-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pmdarima-2.1.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pmdarima-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pmdarima-2.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
pmdarima-2.1.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pmdarima-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pmdarima-2.1.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pmdarima-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pmdarima-2.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pmdarima-2.1.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pmdarima-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size:17.8 MB

Release files / pmdarima-2.1.1.tar.gz

Download URL pmdarima-2.1.1.tar.gz
Size 1.4 MB
Tags Source
SHA-256 checksum
How to use checksums
b8d2a0c0cd3f7ec90825fa25a917b5f66073de58033511de015a9e76e4e3d8f7
BLAKE2b-256 checksum
How to use checksums
e562d70e2ec79b2c3576bcbd08367f4843ae7b7bc3ef760fda2f059e18f9daad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release files / pmdarima-2.1.1-cp314-cp314-win_amd64.whl

Download URL pmdarima-2.1.1-cp314-cp314-win_amd64.whl
Size 723.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
320942588f7d32fb8b38fa648c46a60a4e43f87d1ceb722e796d4d456997069c
BLAKE2b-256 checksum
How to use checksums
d98b38fd9f3723c814369cc50bff8bd7ea63ae3a92316b9a033fcc5a86f3044b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / pmdarima-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pmdarima-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 688.8 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7e0080637d9d9a21687dec3062ad512f6ae1ee47abd9f47770d3782510321d8c
BLAKE2b-256 checksum
How to use checksums
01ed94646c2fc61c470daf69b41c2432d08d0e568473791eeba1eb9e7fd3a555
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.14

Release files / pmdarima-2.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pmdarima-2.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 674.0 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
32812a95237bb5f1b50fe630e71d4349141fd171193e8769b30b81989fecd5eb
BLAKE2b-256 checksum
How to use checksums
967d7b04ed19570fe2088460f23d158fa3df17868717b9069852585ed583bb91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / pmdarima-2.1.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL pmdarima-2.1.1-cp314-cp314-macosx_11_0_arm64.whl
Size 594.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
71eb1c5586f3f06e6ed9f3649c393ef02d039daa7bbf966793dc99977beb0254
BLAKE2b-256 checksum
How to use checksums
9d34c84e668fad0a6f02ab55a7964346bb962c2b31c1d9f1044426635ad8bbe6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / pmdarima-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL pmdarima-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 603.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
76d1120cd0497c5c7e1cc566ff771d82b7059f9202c51fd60e932d7f525aa693
BLAKE2b-256 checksum
How to use checksums
582f11594836cb842325dc385e4865dac79758afae1ca77c29f9ef7bbe5f7f92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / pmdarima-2.1.1-cp313-cp313-win_amd64.whl

Download URL pmdarima-2.1.1-cp313-cp313-win_amd64.whl
Size 711.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f68bd04ac170b0463de308b2b0dccae4696e113047caf078b17fa84273ece75a
BLAKE2b-256 checksum
How to use checksums
cb21c4bb24c001869a17d35414380574851de60e55d601203e88da3c8c78f7da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / pmdarima-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pmdarima-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 688.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b4df5236a8be6e4995cc922573a8cee93f306c1576681b290bbfda3d4c9f6c50
BLAKE2b-256 checksum
How to use checksums
c7e022c7259125343e5ccbd574092116a3ccadbf58a84023ef32f4222a321d5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.14

Release files / pmdarima-2.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pmdarima-2.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 670.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c2e74ff51489c5a68108422c0db77e298ec297abaa99ec3ae7729596ae5951c9
BLAKE2b-256 checksum
How to use checksums
3db095944591dc77518998901c28442d09aa79e865bad642f6774e7b8fd9e59c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / pmdarima-2.1.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL pmdarima-2.1.1-cp313-cp313-macosx_11_0_arm64.whl
Size 591.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
30e417ead2aa21b0148d082a9b6a2b46c88fef6b8ed97fca9e8c796ee43e16be
BLAKE2b-256 checksum
How to use checksums
29abc63ffa3c53333ef418cff88cee6518b675d255f51bc7c0d7b3067eaae00e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / pmdarima-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL pmdarima-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 602.5 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
57c20e85d97f639fa4376cef0a0d1a6ba12c11eb5629b0043267ec1d0d1c391d
BLAKE2b-256 checksum
How to use checksums
6b183c21fd8796d07303d3a91001aa32163b515e672d73cf9e0d60f07993a9ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / pmdarima-2.1.1-cp312-cp312-win_amd64.whl

Download URL pmdarima-2.1.1-cp312-cp312-win_amd64.whl
Size 715.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7ffe658df9f6b2d60150d439001e95de1a82b6c0121174fd9d1a1a131b6bfb89
BLAKE2b-256 checksum
How to use checksums
5267fdc6ab115c76c27d2efadb6f059c0a38262399b43174742a2687b31e620d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / pmdarima-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pmdarima-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 689.1 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
512fa4c5c34328e0ec1658640c04f8af6eddccae784f28630afa8e4beacdffd3
BLAKE2b-256 checksum
How to use checksums
302b08017984601dc4c4b85a0075685ed7eced2a811c00ec9cf372c0bea0787a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.14

Release files / pmdarima-2.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pmdarima-2.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 670.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ef25387a5ae2a1bf1a86d3d0a2009ee6d291b4129a5d578d8d42e3f18ae6c109
BLAKE2b-256 checksum
How to use checksums
cb1fe869861148c689472254c6c8519be5d9aac26056cb9e2549db3396078ae6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.12

Release files / pmdarima-2.1.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL pmdarima-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Size 593.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4218d71dbd2010d72bda00092b0e7d167d60d7ce1f44463a9a8869a2fae2eac1
BLAKE2b-256 checksum
How to use checksums
5e2cf8716b209e0dcfc7b8e6c953ca1c020b53348741150e2fdbbe471b4b4633
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / pmdarima-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL pmdarima-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 604.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f2c639f114c247a90233ec9a8f076a65765cfc940440316525c44e8e581d5820
BLAKE2b-256 checksum
How to use checksums
7ac43cb96943ab91c054fac5078bbc788fcb6031e80301e13538a6d0748a6f2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / pmdarima-2.1.1-cp311-cp311-win_amd64.whl

Download URL pmdarima-2.1.1-cp311-cp311-win_amd64.whl
Size 722.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
31f1a48517849fcd52a5844d6605f0c2acf0a8bf6fadffcc5fdabb08d8201328
BLAKE2b-256 checksum
How to use checksums
f1637550687289f41ab3b58223841e47a0454df923bf76304b6ca09d29b4f169
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / pmdarima-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pmdarima-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 698.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e8148ff1f4cdb9a07164247eb3e6dddc1baef6e226d38528bd3fdf5d160f8dee
BLAKE2b-256 checksum
How to use checksums
bdcd9ca0cdd89e4122c759a59a10c26b60947582764132137be1d8231c059544
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.14

Release files / pmdarima-2.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pmdarima-2.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 683.3 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
750782537b7fbf09dc29f82c88d0c3afd97c0567eca0dc1054692b5996dea4cd
BLAKE2b-256 checksum
How to use checksums
009ae6777e2fe6be775643c1b51ed1b54f8ef9918946ce31ae8559047161b581
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.14

Release files / pmdarima-2.1.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL pmdarima-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Size 592.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6e817db74d7c749d6c68fb5482b90255a3064bc924b18312d594de1bcbd03536
BLAKE2b-256 checksum
How to use checksums
5489a0cbe5a993f91d2ad41634a6d559181913245dab12cfb1635fed226c266f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / pmdarima-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pmdarima-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 602.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c8b2776edaedcc63ceddfcfb1e6240286b3d7f027500011fc6989764aebd0510
BLAKE2b-256 checksum
How to use checksums
e1a50de1399625e23f37383d599519e9bd17a4b62644882a82bdde2f718f8233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / pmdarima-2.1.1-cp310-cp310-win_amd64.whl

Download URL pmdarima-2.1.1-cp310-cp310-win_amd64.whl
Size 719.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
b038d14686a5af23e83c7ecc1cab0d2fa57c2445e1d0754d56ffdc6e85e9a955
BLAKE2b-256 checksum
How to use checksums
fda9ed2bc65305ee99f77a08f6246c7cd675eb70418b1342030044fc21a1864d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release files / pmdarima-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pmdarima-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 665.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1a315609437523ced314c86cffbcb5d957d3b8850e3c8a9bfdb51e93c5b6b597
BLAKE2b-256 checksum
How to use checksums
55070d7d76632473c14067744e81a2b72f060cb893ed2112f8cf16d547c4fb68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.19

Release files / pmdarima-2.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pmdarima-2.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 694.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f80c1d4d9947d114807c49b0969e6cb0109c7d68917aaa1c5f1620694c40a33a
BLAKE2b-256 checksum
How to use checksums
c00c37a93970683866e85254d0b45a1b6fd8174635306d4322300f90a30ea9a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.14

Release files / pmdarima-2.1.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL pmdarima-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Size 593.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4639c9438bcdef98e984fd9b55224a5bf61589a1f5ae3ad539ce5e9e28fdb564
BLAKE2b-256 checksum
How to use checksums
bc064cd4604b0fa2c58b32340072321a0a77146edbe1b7c09f45a440359e8adc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release files / pmdarima-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pmdarima-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 604.2 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
df15ae4c646865f66158b2552b30f069396af894bbf8c59afaa0329b021aaf42
BLAKE2b-256 checksum
How to use checksums
00e70e3680352915c8247f65dd5eaccf31ebe3dd82f1618eefff44ce16ea5f3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release history Release notifications | RSS feed

This release

2.1.1 This release

26 release files

2.1.0

21 release files

2.0.4

30 release files

2.0.3

25 release files

2.0.2

25 release files

2.0.1

20 release files

2.0.0

13 release files

1.8.5

16 release files

1.8.3

17 release files

1.8.2

17 release files

1.8.1

17 release files

1.6.1

17 release files

1.5.3

17 release files

1.5.2

13 release files

1.2.1

13 release files

1.2.0

13 release files

1.1.1

13 release files

1.1.0

13 release files

1.0.0

9 release files

0.0.0

6 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page