File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ import numpy as np
6
6
cimport numpy as np
7
7
cimport cython
8
8
9
+ np .import_array ()
10
+
9
11
def stationary_bootstrap_sample (np .int64_t [:] indices ,
10
12
double [:] u ,
11
13
double p ):
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ cdef extern from 'float.h':
19
19
20
20
cdef double LNSIGMA_MAX = log (DBL_MAX )
21
21
22
+ np .import_array ()
23
+
22
24
cdef inline bounds_check (double * sigma2 , double * var_bounds ):
23
25
if sigma2 [0 ] < var_bounds [0 ]:
24
26
sigma2 [0 ] = var_bounds [0 ]
Original file line number Diff line number Diff line change 2
2
Version 4
3
3
=========
4
4
5
- Changes Since 4.9
6
- =================
5
+ Release 4.10
6
+ ============
7
7
- Fixed a bug in arch_lm_test that assumed that the model data is contained in
8
8
a pandas Series. (:issue:`313`).
9
+ - Fixed a bug that can affect use in certain environments that reload modules
10
+ (:issue:`317`).
9
11
10
12
Release 4.9
11
13
===========
You can’t perform that action at this time.
0 commit comments