Skip to content

Commit

Permalink
RLS: 4.9.1
Browse files Browse the repository at this point in the history
Release 4.9.1 commit
  • Loading branch information
bashtage committed Aug 31, 2019
1 parent 90cd8c6 commit 3a27ec1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion arch/univariate/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
data_scale_warning,
starting_value_warning)
from arch.utility.testing import WaldTestStatistic
from property_cached import cached_property
from arch.vendor import cached_property

__all__ = ['implicit_constant', 'ARCHModelResult', 'ARCHModel', 'ARCHModelForecast', 'constraint']

Expand Down
2 changes: 1 addition & 1 deletion arch/univariate/mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from arch.univariate.volatility import (ARCH, EGARCH, FIGARCH, GARCH, HARCH,
ConstantVariance)
from arch.utility.array import cutoff_to_index, ensure1d, parse_dataframe
from property_cached import cached_property
from arch.vendor import cached_property

__all__ = ['HARX', 'ConstantMean', 'ZeroMean', 'ARX', 'arch_model', 'LS']

Expand Down
4 changes: 2 additions & 2 deletions arch/utility/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
from abc import ABCMeta
import datetime as dt

from property_cached import cached_property

import numpy as np
from pandas import (DataFrame, DatetimeIndex, NaT, Series, Timestamp,
to_datetime)

from arch.vendor import cached_property

__all__ = ['ensure1d', 'parse_dataframe', 'DocStringInheritor',
'date_to_index', 'cutoff_to_index', 'ensure2d', 'AbstractDocStringInheritor']

Expand Down
2 changes: 1 addition & 1 deletion arch/utility/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from scipy.stats import chi2

from property_cached import cached_property
from arch.vendor import cached_property

__all__ = ['WaldTestStatistic']

Expand Down
2 changes: 1 addition & 1 deletion arch/vendor/property_cached.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
import functools
import sys
import threading
import weakref
from time import time
import weakref

try:
import asyncio
Expand Down

0 comments on commit 3a27ec1

Please sign in to comment.