https://github.com/alkaline-ml/pmdarima
Raw File
Tip revision: 23d4d0db9564f1a8fa16b3b769396164ae9f9383 authored by Aaron Smith on 02 December 2020, 16:09:46 UTC
Update what's new for 1.8.0 (#403)
Tip revision: 23d4d0d
.gitignore
# VS Code
.vscode/

# Mac stuff
.DS_Store
.idea/

# custom extension
.pyramid-cache/
*.pmdpkl

# Don't want to include scratch stuff
scratch/

# Models
*.pkl
!pmdarima/datasets/data/*.pkl

# sdist artifacts
MANIFEST

# Pypi pws
.pypipws

# Coverage
coverage

# Pytest
.pytest_cache

# OAuth access for automating releases
ACCESS_TOKEN

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions and cython reports
*.so
*.c
pmdarima/arima/*.html
pmdarima/preprocessing/exog/*.html
pmdarima/utils/*.html

# Distribution / packaging
.Python
env/
build/
doc/_build
doc/auto_examples
doc/modules/generated
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

# We want this to only be created on CI/CD platforms
VERSION
back to top