Skip to content

Commit

Permalink
Bump version: 0.20.0 → 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Feb 6, 2021
1 parent 4826aeb commit cb6a9d6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
25 changes: 12 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.20.0
current_version = 0.21.0
commit = True
tag = True
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}
tag_name = {new_version}
Expand All @@ -15,15 +15,15 @@ tag_name = {new_version}
name = cobra
url = https://opencobra.github.io/cobrapy
download_url = https://pypi.org/project/cobra
project_urls =
project_urls =
Source Code = https://github.com/opencobra/cobrapy
Documentation = https://cobrapy.readthedocs.io
Bug Tracker = https://github.com/opencobra/cobrapy/issues
author = The cobrapy core development team.
author_email = cobra-pie@googlegroups.com
maintainer = Moritz E. Beber
maintainer_email = moritz.beber@gmail.com
classifiers =
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Expand All @@ -39,7 +39,7 @@ license = LGPL-2.0-or-later OR GPL-2.0-or-later
description = COBRApy is a package for constraint-based modeling of metabolic networks.
long_description = file: README.rst, INSTALL.rst
long_description_content_type = text/x-rst
keywords =
keywords =
metabolism
biology
constraint-based
Expand All @@ -51,7 +51,7 @@ keywords =

[options]
zip_safe = True
install_requires =
install_requires =
appdirs ~=1.4
depinfo
diskcache ~=5.0
Expand All @@ -67,24 +67,24 @@ install_requires =
ruamel.yaml ~=0.16
six
swiglpk
tests_require =
tests_require =
tox
packages = find:
package_dir =
package_dir =
= src

[options.packages.find]
where = src

[options.package_data]
cobra =
cobra =
io/*.json
test/data/*

[options.extras_require]
array =
array =
scipy
development =
development =
black
bumpversion
isort
Expand All @@ -96,7 +96,7 @@ universal = 1
[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
values =
placeholder
a

Expand All @@ -107,4 +107,3 @@ replace = version="{new_version}"
[bumpversion:file:src/cobra/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

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

# All other arguments are defined in `setup.cfg`.
if __name__ == "__main__":
setup(version="0.20.0")
setup(version="0.21.0")
2 changes: 1 addition & 1 deletion src/cobra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "The cobrapy core development team."
__version__ = "0.20.0"
__version__ = "0.21.0"


from cobra.core import (
Expand Down

0 comments on commit cb6a9d6

Please sign in to comment.