From 97b4e48a1ee205bcdc014b12e2c496c68439f5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=B6nig?= Date: Thu, 15 Aug 2024 12:49:49 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.7=20=E2=86=92=200.9.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 42 +++++++++++++++++++-------------------- setup.py | 2 +- src/sbmlutils/__init__.py | 2 +- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/setup.cfg b/setup.cfg index 7500507a..5bc8eebc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [bumpversion] -current_version = 0.8.7 +current_version = 0.9.0 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,14 +23,14 @@ author = Matthias Koenig author_email = konigmatt@googlemail.com maintainer = Matthias Koenig maintainer_email = konigmatt@googlemail.com -classifiers = +classifiers = Development Status :: 5 - Production/Stable Intended Audience :: Science/Research License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3) Operating System :: OS Independent Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 - Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.12 Programming Language :: Python :: Implementation :: CPython Topic :: Scientific/Engineering Topic :: Scientific/Engineering :: Bio-Informatics @@ -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,9 +46,9 @@ keywords = [options] zip_safe = True python_requires = >=3.10 -install_requires = +install_requires = pymetadata>=0.4.1 - + depinfo rich lxml @@ -56,33 +56,33 @@ install_requires = jinja2 xmltodict pydantic>2.8 - - setuptools # fix for colorbrewer dependency of py4cytoscape + + setuptools # fix for colorbrewer dependency of py4cytoscape numpy>=1.26.4 python-libsbml>=5.20.4 antimony>=2.15.0 scipy>=1.14 pandas>=2.2.0 - tabulate>=0.9.0 + tabulate>=0.9.0 pint>=0.24.3 - + markdown-it-py>=3.0.0 openpyxl>=3.1.5 xmlschema>=3.3.2 matplotlib>=3.9 py4cytoscape>=1.9.0 libroadrunner>=1.27.0 - - uvicorn>=0.30.6 - fastapi>=0.112.0 + + uvicorn>=0.30.6 + fastapi>=0.112.0 python-multipart>=0.0.9 -tests_require = +tests_require = tox>=3.24.3 pytest>=7.0.1 -setup_requires = +setup_requires = pytest-runner packages = find: -package_dir = +package_dir = = src include_package_data = True @@ -93,7 +93,7 @@ test = pytest where = src [options.extras_require] -development = +development = pip-tools>=7.4.1 black>=24.8.0 bump2version>=1.0.1 @@ -105,7 +105,7 @@ development = pytest>=7.4.0 pytest-cov>=4.1.0 beautifulsoup4>=4.12.3 -docs = +docs = sphinx>=3.4.3 ipykernel>=5.4.3 nbsphinx>=0.8.1 @@ -119,7 +119,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 7450b205..b9f34792 100644 --- a/setup.py +++ b/setup.py @@ -4,4 +4,4 @@ if __name__ == "__main__": - setup(version="0.8.7") + setup(version="0.9.0") diff --git a/src/sbmlutils/__init__.py b/src/sbmlutils/__init__.py index 242e4afb..5499e817 100644 --- a/src/sbmlutils/__init__.py +++ b/src/sbmlutils/__init__.py @@ -3,7 +3,7 @@ from pathlib import Path __author__ = "Matthias König" -__version__ = "0.8.7" +__version__ = "0.9.0" program_name = "sbmlutils"