Skip to content

Commit

Permalink
feat: updated to Biosimulators-utils 0.1.114: organized options, adde…
Browse files Browse the repository at this point in the history
…d option to control logging; added Python package to specs; added fonts to Docker image
  • Loading branch information
jonrkarr committed Sep 1, 2021
1 parent 956c79b commit 56fbb32
Show file tree
Hide file tree
Showing 6 changed files with 187 additions and 140 deletions.
7 changes: 6 additions & 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.16"
ARG VERSION="0.1.17"
ARG SIMULATOR_VERSION="2.2.0"

# metadata
Expand Down Expand Up @@ -49,6 +49,11 @@ RUN apt-get update -y \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*

# fonts for matplotlib
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends libfreetype6 \
&& rm -rf /var/lib/apt/lists/*

# Copy code for command-line interface into image and install it
COPY . /root/Biosimulators_tellurium
RUN pip install /root/Biosimulators_tellurium \
Expand Down
4 changes: 4 additions & 0 deletions biosimulators.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
},
"operatingSystemType": "Linux"
},
"pythonApi": {
"package": "biosimulators-tellurium",
"module": "biosimulators_tellurium"
},
"authors": [{
"firstName": "Jayit",
"lastName": "Biswas",
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.16'
__version__ = '0.1.17'
Loading

0 comments on commit 56fbb32

Please sign in to comment.