-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
30 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Release notes for cobrapy 0.8.0 | ||
|
||
## Fixes | ||
|
||
- Tests no longer generates warnings about using deprecated functions. | ||
- Gapfilling integrality thresholds now supported for all optlang solvers. | ||
|
||
## New features | ||
|
||
- `Model.slim_optimize()` can be used perform optimization without | ||
creating a solution. Can lead to significant speedup compared to | ||
`Model.optimize` when repeatedly doing optimizations and only making | ||
use of the objective value as avoiding the need to fetch all values | ||
from the solver object. | ||
- solution, model, metabolite and reaction now have html | ||
representation so they give more informative prints in jupyter | ||
notebooks. | ||
- New convenience functions `cobra.flux_analysis.find_essential_genes` and | ||
`cobra.flux_analysis.find_essential_reactions`. | ||
- `Model.optimize` has new parameter `raise_error` to enable option to | ||
get trigger exception if no feasible solution could be found. | ||
- `str(reaction)` now gives the more useful reaction id and the | ||
reaction string. | ||
|
||
## Deprecated features | ||
|
||
- `str(reaction)` no longer gives `reaction.id`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.7.0 | ||
current_version = 0.8.0 | ||
commit = True | ||
tag = True | ||
parse = (?P<major>\d+) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters