From 531ce54242f6e195a7a13daf24bab96f0b9ee0ed Mon Sep 17 00:00:00 2001 From: Matthias Koenig Date: Sun, 28 Feb 2021 23:45:53 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.9=20=E2=86=92=200.4.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 36 ++++++++++++++++++------------------ setup.py | 2 +- src/sbmlutils/__init__.py | 2 +- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/setup.cfg b/setup.cfg index e47265ae6..5fe7c86ba 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [bumpversion] -current_version = 0.4.9 +current_version = 0.4.10 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 = sbmlutils url = https://github.com/matthiaskoenig/sbmlutils download_url = https://pypi.org/project/sbmlutils -project_urls = +project_urls = Source Code = https://github.com/matthiaskoenig/sbmlutils Documentation = https://sbmlutils.readthedocs.io Bug Tracker = https://github.com/matthiaskoenig/sbmlutils/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) @@ -38,7 +38,7 @@ license = LGPL-3.0 description = sbmlutils are utilities for working with SBML. long_description = file: README.rst long_description_content_type = text/x-rst -keywords = +keywords = modeling standardization SBML @@ -46,7 +46,7 @@ keywords = [options] zip_safe = True python_requires = >=3.7 -install_requires = +install_requires = numpy==1.19.3 depinfo>=0.1.7 scipy>=1.6.0 @@ -65,13 +65,13 @@ install_requires = antimony>=2.12.0 libroadrunner>=2.0.5 pytest>=6.2.1 -tests_require = +tests_require = tox>=3.21.4 pytest>=6.2.2 -setup_requires = +setup_requires = pytest-runner packages = find: -package_dir = +package_dir = = src include_package_data = True @@ -82,19 +82,19 @@ test = pytest where = src [options.extras_require] -development = +development = black bump2version isort tox pytest>=6.1 -docs = - sphinx>=3.4.3 - ipykernel>=5.4.3 - nbsphinx>=0.8.1 - sphinx_rtd_theme>=0.5.1 - pypandoc>=1.5 - sphinx-autoapi>=1.7.0 +docs = + sphinx>=3.4.3 + ipykernel>=5.4.3 + nbsphinx>=0.8.1 + sphinx_rtd_theme>=0.5.1 + pypandoc>=1.5 + sphinx-autoapi>=1.7.0 [bdist_wheel] universal = 1 @@ -102,7 +102,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 517dfc8f9..4c561181f 100644 --- a/setup.py +++ b/setup.py @@ -4,4 +4,4 @@ if __name__ == "__main__": - setup(version="0.4.9") + setup(version="0.4.10") diff --git a/src/sbmlutils/__init__.py b/src/sbmlutils/__init__.py index 3045042da..fbf3e3fe5 100644 --- a/src/sbmlutils/__init__.py +++ b/src/sbmlutils/__init__.py @@ -2,7 +2,7 @@ from pathlib import Path __author__ = "Matthias Koenig" -__version__ = "0.4.9" +__version__ = "0.4.10" from sbmlutils.utils import show_versions