Skip to content

Commit a084c33

Browse files
committed
feat: added missing imports to public API
1 parent 8b79766 commit a084c33

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Base OS
1515
FROM python:3.9-slim-buster
1616

17-
ARG VERSION="0.1.18"
17+
ARG VERSION="0.1.19"
1818
ARG SIMULATOR_VERSION="2.2.0"
1919

2020
# metadata

biosimulators_tellurium/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from ._version import __version__ # noqa: F401
22
# :obj:`str`: version
33

4-
from .core import exec_sed_task, exec_sedml_docs_in_combine_archive # noqa: F401
4+
from .core import exec_sed_task, preprocess_sed_task, exec_sed_doc, exec_sedml_docs_in_combine_archive # noqa: F401
55
from .data_model import SedmlInterpreter, PlottingEngine, PreprocesssedTask # noqa: F401
66
import tellurium
77

@@ -10,6 +10,7 @@
1010
'get_simulator_version',
1111
'exec_sed_task',
1212
'preprocess_sed_task',
13+
'exec_sed_doc',
1314
'exec_sedml_docs_in_combine_archive',
1415

1516
'SedmlInterpreter',

biosimulators_tellurium/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.18'
1+
__version__ = '0.1.19'

0 commit comments

Comments
 (0)