Skip to content

Commit

Permalink
Bump version: 0.8.6 → 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianLieven committed Nov 21, 2018
1 parent 68bad7e commit 0706f94
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.8.6"
version = "0.8.7"
# The full version, including alpha/beta/rc tags.
release = "0.8.6"
release = "0.8.7"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion memote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@

__author__ = "Moritz E. Beber"
__email__ = "morbeb@biosustain.dtu.dk"
__version__ = "0.8.6"
__version__ = "0.8.7"
26 changes: 13 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[bumpversion]
current_version = 0.8.6
current_version = 0.8.7
commit = True
tag = True
tag_name = {new_version}
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]?)(?P<num>\d*)
serialize =
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}

Expand All @@ -17,7 +17,7 @@ url = https://github.com/opencobra/memote
download_url = https://pypi.org/pypi/memote/
author = Moritz E. Beber
author_email = morbeb@biosustain.dtu.dk
classifiers =
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
Expand All @@ -33,7 +33,7 @@ classifiers =
license = Apache Software License Version 2.0
description = the genome-scale metabolic model test suite
long_description = file: README.rst
keywords =
keywords =
memote
metabolic
constrained-based
Expand All @@ -45,7 +45,7 @@ keywords =

[options]
zip_safe = False
install_requires =
install_requires =
click<7.0
click-configfile
click-log
Expand All @@ -72,7 +72,7 @@ install_requires =
depinfo
equilibrator_api;python_version>='3.5'
python_requires = >=2.7,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
tests_require =
tests_require =
pytest>=3.1
pytest-raises
pytest-cov
Expand All @@ -82,25 +82,25 @@ tests_require =
packages = find:

[options.package_data]
memote.experimental.schemata =
memote.experimental.schemata =
*.json
memote.suite =
memote.suite =
tests/*.py
memote.suite.templates =
memote.suite.templates =
*.html
*.yml
memote.support.data =
memote.support.data =
*.csv
*.json

[options.entry_points]
console_scripts =
console_scripts =
memote = memote.suite.cli.runner:cli

[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
values =
placeholder
a

Expand Down Expand Up @@ -128,7 +128,7 @@ universal = 1

[flake8]
max-line-length = 80
exclude =
exclude =
__init__.py
docs

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@

# All other keys are defined in `setup.cfg` under [metadata] and [options].
setup(
version="0.8.6",
version="0.8.7",
)

0 comments on commit 0706f94

Please sign in to comment.