https://github.com/antoinecarme/pyaf
Raw File
Tip revision: 6e7bacd02d919590ea31ff68b1620447294b7124 authored by Antoine Carme on 27 September 2018, 10:38:42 UTC
Remove slow mode tests in travis-ci build tests
Tip revision: 6e7bacd
__init__.py
# Copyright (C) 2016 Antoine Carme <Antoine.Carme@Laposte.net>
# All rights reserved.

# This file is part of the Python Automatic Forecasting (PyAF) library and is made available under
# the terms of the 3 Clause BSD license

def check_python_version_for_pyaf():
    import six
    if six.PY2:
        raise Exception("PYAF_ERROR_PYTHON_2_NOT_SUPPORTED")


check_python_version_for_pyaf()

from . import ForecastEngine, HierarchicalForecastEngine

__version__ = '1.0.0'

back to top