Skip to content

Commit

Permalink
Bump version: 0.9.12 → 0.9.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Dec 4, 2019
1 parent 0dd104b commit 273b598
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.9.12"
version = "0.9.13"
# The full version, including alpha/beta/rc tags.
release = "0.9.12"
release = "0.9.13"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
29 changes: 15 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[bumpversion]
current_version = 0.9.12
current_version = 0.9.13
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 @@ -30,7 +30,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 @@ -42,7 +42,7 @@ keywords =

[options]
zip_safe = False
install_requires =
install_requires =
click
click-configfile
click-log
Expand All @@ -68,29 +68,29 @@ install_requires =
requests
equilibrator_api <0.2;python_version>='3.5'
python_requires = >=2.7,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
tests_require =
tests_require =
tox
packages = find:
package_dir =
= src
package_dir =
= src

[options.packages.find]
where = src

[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

[bdist_wheel]
Expand All @@ -99,7 +99,7 @@ universal = 1
[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
values =
placeholder
a

Expand All @@ -118,3 +118,4 @@ replace = version="{new_version}"
[bumpversion:file:docs/conf.py]
search = "{current_version}"
replace = "{new_version}"

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.9.12",
version="0.9.13",
)
2 changes: 1 addition & 1 deletion src/memote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

__author__ = "Moritz E. Beber"
__email__ = "morbeb@biosustain.dtu.dk"
__version__ = "0.9.12"
__version__ = "0.9.13"

if sys.version_info < (3,):
warnings.warn('You are using `Memote` with Python 2. '
Expand Down

0 comments on commit 273b598

Please sign in to comment.