Skip to content

Commit

Permalink
Bump version: 0.13.1 → 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Apr 19, 2024
1 parent 1639346 commit 1853156
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion q2_micom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
fit_phenotype,
)

__version__ = "0.13.1"
__version__ = "0.13.2"


def read_results(path):
Expand Down
24 changes: 12 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.13.1
current_version = 0.13.2
commit = True
tag = True

Expand All @@ -12,7 +12,7 @@ long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
url = https://github.com/micom-dev/q2-micom
classifiers =
classifiers =
Development Status :: 4 - Beta
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
modeling
metabolism
Expand All @@ -32,25 +32,25 @@ keywords =
zip_safe = False
packages = find:
python_requires = >=3.6
install_requires =
install_requires =
cobra>=0.29.0
micom>=0.34.1,<0.35
jinja2>=2.10.3
qiime2>=2023.2
rich>=6.0
pandas>=1.0
tests_require =
tests_require =
coverage
pytest
pytest-cov
flake8

[options.package_data]
q2_micom =
q2_micom =
citations.bib

[options.entry_points]
qiime2.plugins =
qiime2.plugins =
q2-micom = q2_micom.plugin_setup:plugin

[bumpversion:file:setup.py]
Expand All @@ -62,7 +62,7 @@ search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

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

Expand All @@ -75,15 +75,15 @@ branch = True
omit = q2_micom/tests/*

[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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"""
from setuptools import setup

setup(version="0.13.1")
setup(version="0.13.2")

0 comments on commit 1853156

Please sign in to comment.