Skip to content

Commit 440e240

Browse files
author
danielhyduke
committed
cobra pie 0.2.0 release
1 parent 2680ae8 commit 440e240

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1120
-380
lines changed

README

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
COBRA for Python
1+
COBRA for Python
2+
0.2.1: TODO
3+
-Move setup.py into toplevel
4+
-Improve jython compatibility
5+
-Improve performance using new style solvers for repetitive actions (e.g., deletion studies)
6+
7+
0.2.0: Release: Subversion revision 342
8+
-Minor bug fixes.
9+
-Moved fallback options from new style solver solve_problem to solve
10+
-Added a test script test_all.py that can be used to run the unit tests when running from the source
11+
-Added cobra to pypi
12+
-It's possible to run the unit tests from the setup.py script.
13+
214
0.2.0b1: Beta version for the 0.2.0 release
315
-Migration to new style solvers
416
-Increased support for Jython

cobra/README

Lines changed: 0 additions & 1 deletion
This file was deleted.

cobra/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import sys
2-
__version__ = '0.2.0b1'
2+
__version__ = '0.2.0'
33
from os import name as __name
44
if __name == 'java':
55
#raise Exception("Experimental modules of numpy/scipy for java that are" +\
@@ -10,7 +10,6 @@
1010
warn("COBRA for Python is not optimized for JAVA. If it's slow or crashes consider increasing JVM memory")
1111
from core import Object, Formula, Metabolite, Gene, Reaction, Model, DictList
1212
else:
13-
#from core import *
1413
from core import Object, Formula, Metabolite, Gene, Reaction, Model, DictList
1514
try:
1615
from core import ArrayBasedModel
-147 Bytes
Binary file not shown.
612 Bytes
Binary file not shown.
19 KB
Binary file not shown.
2.05 KB
Binary file not shown.
1.6 KB
Binary file not shown.
24.4 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: d23dacab69c1dc358bb2f5562d93961e
3+
config: 1fbc6b9c288742f403445b7a88fd0669
44
tags: fbb0d17656682115ca4d033fb2f83ba1

0 commit comments

Comments
 (0)