Skip to content

Commit

Permalink
Bump version: 0.18.1 → 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Aug 24, 2020
1 parent 1023796 commit b161a67
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 67 deletions.
130 changes: 65 additions & 65 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,98 +1,97 @@
[bumpversion]
current_version = 0.19.0
commit = True
tag = True
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]*)(?P<num>\d*)
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
tag_name = {new_version}

[metadata]
name = cobra
url = https://opencobra.github.io/cobrapy
download_url = https://pypi.org/project/cobra
project_urls =
Source Code = https://github.com/opencobra/cobrapy
Documentation = https://cobrapy.readthedocs.io
Bug Tracker = https://github.com/opencobra/cobrapy/issues
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
# Please consult https://pypi.org/classifiers/ for a full list.
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Bio-Informatics
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Bio-Informatics
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 =
metabolism
biology
constraint-based
linear programming
mixed-integer
optimization
flux-balance analysis
reconstruction
keywords =
metabolism
biology
constraint-based
linear programming
mixed-integer
optimization
flux-balance analysis
reconstruction

[options]
zip_safe = True
install_requires =
depinfo
future
importlib_resources
numpy ~= 1.13
optlang ~= 1.4
pandas ~= 1.0
python-libsbml-experimental == 5.18.1
ruamel.yaml ~= 0.16
six
swiglpk
tests_require =
tox
install_requires =
depinfo
future
importlib_resources
numpy ~= 1.13
optlang ~= 1.4
pandas ~= 1.0
python-libsbml-experimental == 5.18.1
ruamel.yaml ~= 0.16
six
swiglpk
tests_require =
tox
packages = find:
package_dir =
= src
package_dir =
= src

[options.packages.find]
where = src

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

[options.extras_require]
array =
scipy
development =
black
bumpversion
isort
tox
array =
scipy
development =
black
bumpversion
isort
tox

[bdist_wheel]
universal = 1

[bumpversion]
current_version = 0.18.1
commit = True
tag = True
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]*)(?P<num>\d*)
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
tag_name = {new_version}

[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
values =
placeholder
a

Expand All @@ -103,3 +102,4 @@ 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.18.1")
setup(version="0.19.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.18.1"
__version__ = "0.19.0"


from cobra.core import (
Expand Down

0 comments on commit b161a67

Please sign in to comment.