diff --git a/recombinator/block_bootstrap.py b/recombinator/block_bootstrap.py index 6e4a4f9..dfdb0c3 100644 --- a/recombinator/block_bootstrap.py +++ b/recombinator/block_bootstrap.py @@ -106,7 +106,7 @@ def stationary_bootstrap(x: np.ndarray, x = np.vstack((x, x)) # allocate array for the indices into the source array - indices = np.zeros((replications, sub_sample_length), dtype=np.int) + indices = np.zeros((replications, sub_sample_length), dtype=int) # randomly initialize the beginning of the first block in each sub-sample indices[:, 0] = np.random.randint(T, size=(replications,)) diff --git a/setup.py b/setup.py index bcf240d..cf82c82 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ EMAIL = 'nowotnym@gmail.com' AUTHOR = 'Michael Christoph Nowotny' REQUIRES_PYTHON = '>=3.6.0' -VERSION = "0.0.6.1" +VERSION = "0.0.6.2" # What packages are required for this module to be executed? REQUIRED = [ @@ -135,4 +135,4 @@ def run(self): cmdclass={ 'upload': UploadCommand, }, -) \ No newline at end of file +)