From 85588ed059a08a0f0d7664a4fb64012f59fd0a3f Mon Sep 17 00:00:00 2001 From: "Moritz E. Beber" Date: Wed, 17 Apr 2019 10:39:02 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.15.1=20=E2=86=92=200.15.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 2 +- cobra/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index e49cfc944..938fbc650 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ install: - pip install --upgrade pip setuptools wheel tox tox-travis script: - - tox -- --benchmark-skip --cov-report xml --cov-report term + - travis_wait tox -- --benchmark-skip --cov-report xml --cov-report term - bash <(curl -s https://codecov.io/bash) stages: diff --git a/cobra/__init__.py b/cobra/__init__.py index d1dbd824e..f86f6d5cb 100644 --- a/cobra/__init__.py +++ b/cobra/__init__.py @@ -16,7 +16,7 @@ from cobra import sampling from cobra.util import show_versions -__version__ = "0.15.1" +__version__ = "0.15.2" # set the warning format to be prettier and fit on one line _cobra_path = _dirname(_abspath(__file__)) diff --git a/setup.cfg b/setup.cfg index 606341fd3..73cf5bbea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.1 +current_version = 0.15.2 commit = True tag = True parse = (?P\d+) diff --git a/setup.py b/setup.py index bc4a52b71..5ee91a4d8 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ if __name__ == "__main__": setup( name="cobra", - version="0.15.1", + version="0.15.2", packages=find_packages(), setup_requires=setup_requirements, install_requires=[ @@ -52,7 +52,7 @@ "optlang>=1.4.2", "tabulate", "depinfo", - "python-libsbml-experimental>=5.17.2", + "python-libsbml-experimental==5.17.2", ], tests_require=[ "jsonschema > 2.5",