diff --git a/Makefile b/Makefile index e4af2579..d9428c39 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.1.1 +VERSION=0.2.0 FILES=$(wildcard notebooks/${VERSION}/*.ipynb) NOTEBOOKS = $(foreach fn, $(FILES), docs/$(basename ${fn}).html) diff --git a/run_toi.py b/run_toi.py index b341ece0..07c48dbb 100644 --- a/run_toi.py +++ b/run_toi.py @@ -47,8 +47,8 @@ def create_toi_notebook_from_template_notebook( txt = txt.replace("{{{VERSIONNUMBER}}}", f"'{version}'") txt = re.sub(r"toi_num = [0-9]+", f"toi_num = {toi_number}", txt) if quickrun: - txt = re.sub(r"TUNE = [0-9]+", f"TUNE = {2}", txt) - txt = re.sub(r"DRAWS = [0-9]+", f"DRAWS = {2}", txt) + txt = re.sub(r"TUNE = [0-9]+", f"TUNE = {10}", txt) + txt = re.sub(r"DRAWS = [0-9]+", f"DRAWS = {10}", txt) txt = re.sub(r"CHAINS = [0-9]+", f"CHAINS = {1}", txt) else: txt = re.sub(r"TUNE = [0-9]+", f"TUNE = {2000}", txt)