Skip to content

Commit

Permalink
Bump version: 0.8.11 → 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Jan 28, 2019
1 parent 328f486 commit d398fcc
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 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.11"
version = "0.9.0"
# The full version, including alpha/beta/rc tags.
release = "0.8.11"
release = "0.9.0"

# 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.11"
__version__ = "0.9.0"
32 changes: 16 additions & 16 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[bumpversion]
current_version = 0.8.11
current_version = 0.9.0
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 @@ -58,7 +58,7 @@ install_requires =
cookiecutter
cobra >0.13.3
python-libsbml
lxml
lxml
ruamel.yaml >=0.15
travispy
pygithub
Expand All @@ -73,30 +73,30 @@ install_requires =
depinfo
equilibrator_api;python_version>='3.5'
python_requires = >=2.7,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
tests_require =
tox
tests_require =
tox
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 @@ -124,7 +124,7 @@ universal = 1

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

Expand All @@ -133,7 +133,7 @@ match_dir = memote

[tool:pytest]
testpaths = tests
filterwarnings =
filterwarnings =
ignore::DeprecationWarning:libsbml

[isort]
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.11",
version="0.9.0",
)

0 comments on commit d398fcc

Please sign in to comment.