Skip to content

Commit

Permalink
Bump version: 0.14.0 → 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Jul 25, 2024
1 parent 2b27f1b commit 8a948f6
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 @@
association,
)

__version__ = "0.14.0"
__version__ = "0.15.0"


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.14.0
current_version = 0.15.0
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,26 +32,26 @@ keywords =
zip_safe = False
packages = find:
python_requires = >=3.6
install_requires =
install_requires =
cobra>=0.29.0
micom>=0.36.0
jinja2>=2.10.3
qiime2>=2023.2
rich>=6.0
pandas>=1.0
numpy<2.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 @@ -63,7 +63,7 @@ search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

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

Expand All @@ -76,15 +76,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.14.0")
setup(version="0.15.0")

0 comments on commit 8a948f6

Please sign in to comment.