Skip to content

Commit

Permalink
feat: added missing imports to public API
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Sep 3, 2021
1 parent 8b79766 commit a084c33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Base OS
FROM python:3.9-slim-buster

ARG VERSION="0.1.18"
ARG VERSION="0.1.19"
ARG SIMULATOR_VERSION="2.2.0"

# metadata
Expand Down
3 changes: 2 additions & 1 deletion biosimulators_tellurium/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from ._version import __version__ # noqa: F401
# :obj:`str`: version

from .core import exec_sed_task, exec_sedml_docs_in_combine_archive # noqa: F401
from .core import exec_sed_task, preprocess_sed_task, exec_sed_doc, exec_sedml_docs_in_combine_archive # noqa: F401
from .data_model import SedmlInterpreter, PlottingEngine, PreprocesssedTask # noqa: F401
import tellurium

Expand All @@ -10,6 +10,7 @@
'get_simulator_version',
'exec_sed_task',
'preprocess_sed_task',
'exec_sed_doc',
'exec_sedml_docs_in_combine_archive',

'SedmlInterpreter',
Expand Down
2 changes: 1 addition & 1 deletion biosimulators_tellurium/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.18'
__version__ = '0.1.19'

0 comments on commit a084c33

Please sign in to comment.