Skip to content

Commit b96d1e7

Browse files
committed
Bump version: 0.8.0 → 0.8.1
1 parent 4894128 commit b96d1e7

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

cobra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
DictList, Gene, Metabolite, Model, Object, Reaction, Species)
1414
from cobra.util.version_info import show_versions
1515

16-
__version__ = "0.8.0"
16+
__version__ = "0.8.1"
1717

1818
# set the warning format to be prettier and fit on one line
1919
_cobra_path = _dirname(_abspath(__file__))

release-notes/0.8.1.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Release notes for cobrapy 0.8.1
2+
3+
## Fixes
4+
5+
- Fix bug related to inhomogeneous sampling
6+
[#558](https://github.com/opencobra/cobrapy/issues/558). During
7+
flux sampling, store the nullspace rather than the entire projection
8+
(N * N.T) which reduces the memory footprint since it uses memory in
9+
the order of `2 * n_reaction * n_metabolites` instead of `4 *
10+
n_reactions^2` (no change in
11+
speed). [PR #556](https://github.com/opencobra/cobrapy/pull/556)
12+
13+
14+

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.0
2+
current_version = 0.8.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def build_extension(self, ext):
144144

145145
setup(
146146
name="cobra",
147-
version="0.8.0",
147+
version="0.8.1",
148148
packages=find_packages(),
149149
setup_requires=setup_requirements,
150150
install_requires=["future", "swiglpk", "optlang>=1.2.1",

0 commit comments

Comments
 (0)