Skip to content

Commit

Permalink
Bump version: 0.34.1 → 0.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Apr 19, 2024
1 parent 55ec527 commit e4870ca
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion micom/__init__.py
Expand Up @@ -36,4 +36,4 @@
"show_versions",
)

__version__ = "0.34.1"
__version__ = "0.35.0"
26 changes: 13 additions & 13 deletions setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.34.1
current_version = 0.35.0
commit = True
tag = True

Expand All @@ -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.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords =
keywords =
microbiome
microbiota
modeling
Expand All @@ -34,7 +34,7 @@ keywords =
packages = find:
zip_safe = True
python_requires = >=3.7
install_requires =
install_requires =
pandas>=2.0.0
cobra>=0.29.0
jinja2>=2.10.0
Expand All @@ -44,18 +44,18 @@ install_requires =
osqp>=0.6.2
optlang>=1.8.1
highspy>=1.7.1.dev1
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 @@ -70,7 +70,7 @@ search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

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

Expand All @@ -82,23 +82,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
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,4 +5,4 @@

from setuptools import setup

setup(version="0.34.1")
setup(version="0.35.0")

0 comments on commit e4870ca

Please sign in to comment.