Skip to content

Commit

Permalink
update cobra dep
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Jan 3, 2023
1 parent 2bb2bfb commit 0afa890
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ This includes a list of major changes for each minor version starting from 0.19.
For information on how to use `micom` please refer to
[the documentation](https://micom-dev.github.io/micom).

### 0.32.3

Bump the required cobra version to avoid numpy version errors.

### 0.32.1 - 0.32.2

Adjustement to solver settings and lost of improvements to Gurobi that make it much
Adjustments to solver settings and lost of improvements to Gurobi that make it much
faster.

### 0.32.0
Expand Down
26 changes: 13 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ url = https://github.com/micom-dev/micom
author = Christian Diener
author_email = mail@cdiener.com
license = Apache License 2.0
classifiers =
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
Expand All @@ -22,7 +22,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords =
keywords =
microbiome
microbiota
modeling
Expand All @@ -34,25 +34,25 @@ keywords =
packages = find:
zip_safe = True
python_requires = >=3.7
install_requires =
cobra>=0.22.0,<0.24.0
install_requires =
cobra>=0.26.2
jinja2>=2.10.0
scikit-learn>=1.0.0
scipy>=1.0.0
symengine>=0.6.1
osqp>=0.6.2
tests_require =
tests_require =
coverage
pytest
pytest-cov

[options.packages.find]
exclude =
exclude =
docs
tests

[options.package_data]
micom =
micom =
data/*.csv
data/*.gz
data/templates/*.*
Expand All @@ -67,7 +67,7 @@ search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[tool:pytest]
filterwarnings =
filterwarnings =
ignore::DeprecationWarning
ignore::FutureWarning

Expand All @@ -79,23 +79,23 @@ source = micom
branch = True

[coverage:report]
exclude_lines =
exclude_lines =
pragma: no cover

def __repr__
if self\.debug

raise AssertionError
raise NotImplementedError

if 0:
if __name__ == .__main__.:
ignore_errors = True

[flake8]
exclude = tests/*, docs/*, versioneer.py, _version.py
max-line-length = 88
ignore =
ignore =
E203
W503
D202
Expand Down

0 comments on commit 0afa890

Please sign in to comment.