Skip to content

Commit 8e70e26

Browse files
committed
Bump version: 0.19.0 → 0.20.0
1 parent f86056e commit 8e70e26

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed

setup.cfg

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.19.0
2+
current_version = 0.20.0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)
66
\.(?P<minor>\d+)
77
\.(?P<patch>\d+)
88
(?P<release>[a]*)(?P<num>\d*)
9-
serialize =
9+
serialize =
1010
{major}.{minor}.{patch}{release}{num}
1111
{major}.{minor}.{patch}
1212
tag_name = {new_version}
@@ -15,15 +15,15 @@ tag_name = {new_version}
1515
name = cobra
1616
url = https://opencobra.github.io/cobrapy
1717
download_url = https://pypi.org/project/cobra
18-
project_urls =
18+
project_urls =
1919
Source Code = https://github.com/opencobra/cobrapy
2020
Documentation = https://cobrapy.readthedocs.io
2121
Bug Tracker = https://github.com/opencobra/cobrapy/issues
2222
author = The cobrapy core development team.
2323
author_email = cobra-pie@googlegroups.com
2424
maintainer = Moritz E. Beber
2525
maintainer_email = moritz.beber@gmail.com
26-
classifiers =
26+
classifiers =
2727
Development Status :: 5 - Production/Stable
2828
Intended Audience :: Science/Research
2929
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
@@ -39,7 +39,7 @@ license = LGPL-2.0-or-later OR GPL-2.0-or-later
3939
description = COBRApy is a package for constraint-based modeling of metabolic networks.
4040
long_description = file: README.rst, INSTALL.rst
4141
long_description_content_type = text/x-rst
42-
keywords =
42+
keywords =
4343
metabolism
4444
biology
4545
constraint-based
@@ -51,40 +51,40 @@ keywords =
5151

5252
[options]
5353
zip_safe = True
54-
install_requires =
55-
appdirs ~=1.4
56-
depinfo
57-
diskcache ~=5.0
58-
future
59-
httpx ~=0.14
60-
importlib_resources
61-
numpy ~=1.13
62-
optlang <1.4.6
63-
pandas ~=1.0
64-
pydantic ~=1.6
65-
python-libsbml-experimental ==5.18.3
66-
rich ~=6.0
67-
ruamel.yaml ~=0.16
68-
six
69-
swiglpk
70-
tests_require =
54+
install_requires =
55+
appdirs ~=1.4
56+
depinfo
57+
diskcache ~=5.0
58+
future
59+
httpx ~=0.14
60+
importlib_resources
61+
numpy ~=1.13
62+
optlang <1.4.6
63+
pandas ~=1.0
64+
pydantic ~=1.6
65+
python-libsbml-experimental ==5.18.3
66+
rich ~=6.0
67+
ruamel.yaml ~=0.16
68+
six
69+
swiglpk
70+
tests_require =
7171
tox
7272
packages = find:
73-
package_dir =
73+
package_dir =
7474
= src
7575

7676
[options.packages.find]
7777
where = src
7878

7979
[options.package_data]
80-
cobra =
80+
cobra =
8181
io/*.json
8282
test/data/*
8383

8484
[options.extras_require]
85-
array =
85+
array =
8686
scipy
87-
development =
87+
development =
8888
black
8989
bumpversion
9090
isort
@@ -96,7 +96,7 @@ universal = 1
9696
[bumpversion:part:release]
9797
optional_value = placeholder
9898
first_value = placeholder
99-
values =
99+
values =
100100
placeholder
101101
a
102102

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
# All other arguments are defined in `setup.cfg`.
2121
if __name__ == "__main__":
22-
setup(version="0.19.0")
22+
setup(version="0.20.0")

src/cobra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "The cobrapy core development team."
2-
__version__ = "0.19.0"
2+
__version__ = "0.20.0"
33

44

55
from cobra.core import (

0 commit comments

Comments
 (0)