Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modelseedpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

__author__ = "Christopher Henry"
__email__ = "chenry@anl.gov"
__version__ = "0.4.0"
__version__ = "0.4.2"

logger = logging.getLogger(__name__)

Expand Down
20 changes: 10 additions & 10 deletions modelseedpy/core/mstemplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,16 +523,16 @@ def __init__(
biomass_id: str,
name: str,
type: str,
dna: float,
rna: float,
protein: float,
lipid: float,
cellwall: float,
cofactor: float,
pigment: float,
carbohydrate: float,
energy: float,
other: float,
dna: float = 0,
rna: float = 0,
protein: float = 0,
lipid: float = 0,
cellwall: float = 0,
cofactor: float = 0,
pigment: float = 0,
carbohydrate: float = 0,
energy: float = 0,
other: float = 0,
):
"""

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="ModelSEEDpy",
version="0.4.0",
version="0.4.2",
description="Python package for building and analyzing models using ModelSEED",
long_description_content_type="text/x-rst",
long_description=readme,
Expand Down