From 73802085c60d3aa5edd302b90d4ea67f52749ce1 Mon Sep 17 00:00:00 2001 From: Matthias Koenig Date: Mon, 5 Oct 2020 00:00:05 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.6=20=E2=86=92=200.1.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 35 +++++++++++++++++------------------ setup.py | 2 +- src/sbmlsim/__init__.py | 2 +- 3 files changed, 19 insertions(+), 20 deletions(-) diff --git a/setup.cfg b/setup.cfg index de8f27d0..9e4f08c6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [bumpversion] -current_version = 0.1.6 +current_version = 0.1.7 commit = True tag = True parse = (?P\d+) \.(?P\d+) \.(?P\d+) (?P[a]*)(?P\d*) -serialize = +serialize = {major}.{minor}.{patch}{release}{num} {major}.{minor}.{patch} tag_name = {new_version} @@ -15,7 +15,7 @@ tag_name = {new_version} name = sbmlsim url = https://github.com/matthiaskoenig/sbmlsim download_url = https://pypi.org/project/sbmlsim -project_urls = +project_urls = Source Code = https://github.com/matthiaskoenig/sbmlsim Documentation = https://sbmlsim.readthedocs.io Bug Tracker = https://github.com/matthiaskoenig/sbmlsim/issues @@ -23,7 +23,7 @@ author = Matthias Koenig author_email = konigmatt@googlemail.com maintainer = Matthias Koenig maintainer_email = konigmatt@googlemail.com -classifiers = +classifiers = Development Status :: 4 - Beta Intended Audience :: Science/Research License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3) @@ -37,7 +37,7 @@ license = LGPL-3.0 description = sbmlsim are utilities for simulation of SBML. long_description = file: README.rst long_description_content_type = text/x-rst -keywords = +keywords = modeling standardization SBML @@ -45,7 +45,7 @@ keywords = [options] zip_safe = True python_requires = >=3.7 -install_requires = +install_requires = numpy>=1.19.2 scipy>=1.5.1 sympy>=1.6.1 @@ -54,43 +54,42 @@ install_requires = xarray>=0.15.1 bottleneck>=1.3.2 pint>=0.16.1 - + python-libsbml-experimental>=5.18.1 python-libsedml>=2.0.11 python-libcombine>=0.2.7 python-libnuml>=1.1.1 - + libroadrunner>=2.0.0 - + psutil>=5.6.3 setproctitle>=1.1.10 - + matplotlib>=3.3.0 plotly altair>=4.1.0 seaborn>=0.10.1 - + coloredlogs pyDOE>=0.3.8 - + Sphinx sphinx_rtd_theme recommonmark - + ray>=0.8.7 -tests_require = +tests_require = tox packages = find: -package_dir = +package_dir = = src include_package_data = True [options.packages.find] where = src - [options.extras_require] -development = +development = black bump2version isort @@ -104,7 +103,7 @@ universal = 1 [bumpversion:part:release] optional_value = placeholder first_value = placeholder -values = +values = placeholder a diff --git a/setup.py b/setup.py index 418b0d06..d99c9313 100644 --- a/setup.py +++ b/setup.py @@ -3,4 +3,4 @@ if __name__ == "__main__": - setup(version="0.1.6") + setup(version="0.1.7") diff --git a/src/sbmlsim/__init__.py b/src/sbmlsim/__init__.py index acc9a964..5edaab9c 100644 --- a/src/sbmlsim/__init__.py +++ b/src/sbmlsim/__init__.py @@ -1,6 +1,6 @@ from pathlib import Path __author__ = "Matthias Koenig" -__version__ = "0.1.6" +__version__ = "0.1.7" BASE_PATH = Path(__file__).parent