From ebe8d0fba78db0ec6bf9491a0d59709ab7157294 Mon Sep 17 00:00:00 2001 From: Lucian Smith Date: Thu, 3 Aug 2023 15:42:19 -0700 Subject: [PATCH 1/2] Fix wrong child object name. --- biosimulators_tellurium/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biosimulators_tellurium/core.py b/biosimulators_tellurium/core.py index fa39e54..2dd1ff7 100644 --- a/biosimulators_tellurium/core.py +++ b/biosimulators_tellurium/core.py @@ -279,7 +279,7 @@ def exec_sed_task(task, variables, preprocessed_task=None, log=None, config=None if config.VALIDATE_RESULTS and numpy.any(numpy.isnan(results)): msg = 'Simulation failed with algorithm `{}` ({})'.format( preprocessed_task.algorithm_kisao_ids[task.id], - KISAO_ALGORITHM_MAP[preprocessed_task.algorithm_kisao_id[task.id]]['id']) + KISAO_ALGORITHM_MAP[preprocessed_task.algorithm_kisao_ids[task.id]]['id']) for i_param in range(preprocessed_task.solvers[task.id].getNumParams()): param_name = preprocessed_task.solvers[task.id].getParamName(i_param) msg += '\n - {}: {}'.format(param_name, getattr(preprocessed_task.solvers[task.id], param_name)) From ad7718457d9bef9090467375f355a3e799e087db Mon Sep 17 00:00:00 2001 From: Lucian Smith Date: Thu, 3 Aug 2023 15:42:54 -0700 Subject: [PATCH 2/2] Update version number. --- biosimulators_tellurium/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biosimulators_tellurium/_version.py b/biosimulators_tellurium/_version.py index 88395d2..5e82d80 100644 --- a/biosimulators_tellurium/_version.py +++ b/biosimulators_tellurium/_version.py @@ -1 +1 @@ -__version__ = '0.1.38' +__version__ = '0.1.39'