You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix the pandas deprecation warning in find_external_compartment
fix an issue where creating a Formula object would give a recursion error
Other
Resolve flake8 issues and add missing type annotations and docstrings in src/cobra/io and tests/test_io (#1212).
Updated model.py and test_model.py to Python 3.6+, including type annotations and docstrings.
Resolve remaining flake8 issues and enable the check in GitHub Actions Lint workflow (#1272).
Deprecated features
dropped support for Python 3.6
Backwards incompatible changes
Removed model.add_reaction() and replaced remaining usages of it with model.add_reactions()
Removed the following tests: test_add_remove_reaction_benchmark, test_add_reaction,
test_add_reaction_context, test_add_reaction_from_other_model, test_add_cobra_reaction
Removed model.__add__ and model.__iadd__ - use model.merge to replace them.