Skip to content

Commit

Permalink
fixed: fixed passing of configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Sep 2, 2021
1 parent 159c1e1 commit 4e08830
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Base OS
FROM python:3.9-slim-buster

ARG VERSION="0.1.17"
ARG VERSION="0.1.18"
ARG SIMULATOR_VERSION="0.11.18"

# metadata
Expand Down
2 changes: 1 addition & 1 deletion biosimulators_amici/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.17'
__version__ = '0.1.18'
2 changes: 1 addition & 1 deletion biosimulators_amici/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def exec_sedml_docs_in_combine_archive(archive_filename, out_dir, config=None):
sed_doc_executer = functools.partial(exec_sed_doc, exec_sed_task)
return exec_sedml_docs_in_archive(sed_doc_executer, archive_filename, out_dir,
apply_xml_model_changes=True,
config=None)
config=config)


def exec_sed_task(task, variables, log=None, config=None):
Expand Down

0 comments on commit 4e08830

Please sign in to comment.