Skip to content

Commit

Permalink
version 0.2.3 ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ebenhoeh committed Jun 25, 2018
1 parent 430623c commit d0ca166
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 20 deletions.
25 changes: 6 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,10 @@ pip install modelbase

## Release notes

Version 0.1.8

Two minor changes:
1. bugfix: in LabelModel setting c=0 (no labels in this compound) led to an error, because the sum of all labels
had the same name as the compound. Fixed.
2. verbosity can be passed to the assimulo solver.


Version 0.1.7

Support for the differential equation solver sundials (CVODE)
through the python package [assimulo](http://www.jmodelica.org/assimulo).
Falls back to scipy.integrate.ode if assimulo cannot be loaded.

Brief installation instructions of sundials/assimulo (tested on Ubuntu 14.04 and 16.04 and MacOX X):
* Install sundials-2.6.0 [here](https://computation.llnl.gov/projects/sundials/sundials-software). The version is important. We did not get 3.0.0 to run. You will need cmake and ccmake for it.
Set compiler flag -fPIC.
* pip install assimulo

Version 0.2.3 is the official release for the submission of the
mansucript "Building mathematical models of biological systems
with modelbase, a Python package for semi-automatic ODE assembly
and construction of isotope-specific models" to the Journal of Open
Research Software.

See changelog.md for details on changes of earlier versions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## 0.2.3
* Renamed set_reaction to add_reaction for consistency.
* Version to be released with manuscript submission to Journal of Open Research Software

## 0.2.2
* Bug fixed: simulate.getV and getRate did not pass time for time-dependent rate functions generated with modelbase.set_ratev

Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(name='modelbase',
version='0.2.2',
version='0.2.3',
description='A package to build metabolic models',
long_description=long_description,
url='https://gitlab.com/ebenhoeh/modelbase',
author='Oliver Ebenhoeh',
author_email='oliver.ebenhoeh@hhu.de',
Expand Down

0 comments on commit d0ca166

Please sign in to comment.