Skip to content

Commit

Permalink
ENH: Protect numdifftools import. Closes #45
Browse files Browse the repository at this point in the history
  • Loading branch information
jseabold committed Oct 5, 2012
1 parent d587df8 commit 57e0d65
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion statsmodels/tsa/mlemodel.py
Expand Up @@ -13,7 +13,10 @@

import numpy as np

import numdifftools as ndt
try:
import numdifftools as ndt
except:
pass

from statsmodels.base.model import LikelihoodModel

Expand Down

0 comments on commit 57e0d65

Please sign in to comment.