Skip to content

Commit

Permalink
Bump version: 0.7.6 → 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Jun 22, 2018
1 parent 680ccc7 commit 2b04065
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 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.7.6"
version = "0.8.0"
# The full version, including alpha/beta/rc tags.
release = "0.7.6"
release = "0.8.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__ = "[email protected]"
__version__ = "0.7.6"
__version__ = "0.8.0"
30 changes: 15 additions & 15 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[bumpversion]
current_version = 0.7.6
current_version = 0.8.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 = [email protected]
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
click-configfile
click-log
Expand All @@ -64,14 +64,14 @@ install_requires =
travis-encrypt
sympy
sqlalchemy
requests
requests
importlib_resources
numpydoc
pylru
goodtables==1.0.0
depinfo
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 @@ -81,25 +81,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
*.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 @@ -127,7 +127,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.7.6",
version="0.8.0",
)

0 comments on commit 2b04065

Please sign in to comment.