Skip to content

Commit cd9f210

Browse files
committed
bump version number to 2.0.0 given major pre-processing changes
1 parent eb62caf commit cd9f210

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
'data/standard_normal.npy',
6565
'data/cml7.npy']},
6666
include_package_data=True,
67-
version='1.1.1',
67+
version='2.0.0',
6868
description='Library for pairwise analysis of time series data.',
6969
author='Oliver M. Cliff',
7070
author_email='oliver.m.cliff@gmail.com',

tests/generate_benchmark_tables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def get_benchmark_tables(calc_list):
2727
# create list to store the calculator objects
2828
store_calcs = list()
2929

30-
for i in range(5):
30+
for i in range(10):
3131
np.random.seed(42)
32-
calc = Calculator(dataset=dataset, detrend=False, normalise=False)
32+
calc = Calculator(dataset=dataset, detrend=True, normalise=True)
3333
calc.compute()
3434
store_calcs.append(calc)
3535

0 commit comments

Comments
 (0)