Skip to content

Commit 97b4e48

Browse files
Bump version: 0.8.7 → 0.9.0
1 parent 2fa3d00 commit 97b4e48

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

Diff for: setup.cfg

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.8.7
2+
current_version = 0.9.0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)
66
\.(?P<minor>\d+)
77
\.(?P<patch>\d+)
88
(?P<release>[a]*)(?P<num>\d*)
9-
serialize =
9+
serialize =
1010
{major}.{minor}.{patch}{release}{num}
1111
{major}.{minor}.{patch}
1212
tag_name = {new_version}
@@ -15,74 +15,74 @@ tag_name = {new_version}
1515
name = sbmlutils
1616
url = https://github.com/matthiaskoenig/sbmlutils
1717
download_url = https://pypi.org/project/sbmlutils
18-
project_urls =
18+
project_urls =
1919
Source Code = https://github.com/matthiaskoenig/sbmlutils
2020
Documentation = https://sbmlutils.readthedocs.io
2121
Bug Tracker = https://github.com/matthiaskoenig/sbmlutils/issues
2222
author = Matthias Koenig
2323
author_email = konigmatt@googlemail.com
2424
maintainer = Matthias Koenig
2525
maintainer_email = konigmatt@googlemail.com
26-
classifiers =
26+
classifiers =
2727
Development Status :: 5 - Production/Stable
2828
Intended Audience :: Science/Research
2929
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
3030
Operating System :: OS Independent
3131
Programming Language :: Python :: 3.10
3232
Programming Language :: Python :: 3.11
33-
Programming Language :: Python :: 3.12
33+
Programming Language :: Python :: 3.12
3434
Programming Language :: Python :: Implementation :: CPython
3535
Topic :: Scientific/Engineering
3636
Topic :: Scientific/Engineering :: Bio-Informatics
3737
license = LGPL-3.0
3838
description = sbmlutils are utilities for working with SBML.
3939
long_description = file: README.rst
4040
long_description_content_type = text/x-rst
41-
keywords =
41+
keywords =
4242
modeling
4343
standardization
4444
SBML
4545

4646
[options]
4747
zip_safe = True
4848
python_requires = >=3.10
49-
install_requires =
49+
install_requires =
5050
pymetadata>=0.4.1
51-
51+
5252
depinfo
5353
rich
5454
lxml
5555
requests
5656
jinja2
5757
xmltodict
5858
pydantic>2.8
59-
60-
setuptools # fix for colorbrewer dependency of py4cytoscape
59+
60+
setuptools # fix for colorbrewer dependency of py4cytoscape
6161
numpy>=1.26.4
6262
python-libsbml>=5.20.4
6363
antimony>=2.15.0
6464
scipy>=1.14
6565
pandas>=2.2.0
66-
tabulate>=0.9.0
66+
tabulate>=0.9.0
6767
pint>=0.24.3
68-
68+
6969
markdown-it-py>=3.0.0
7070
openpyxl>=3.1.5
7171
xmlschema>=3.3.2
7272
matplotlib>=3.9
7373
py4cytoscape>=1.9.0
7474
libroadrunner>=1.27.0
75-
76-
uvicorn>=0.30.6
77-
fastapi>=0.112.0
75+
76+
uvicorn>=0.30.6
77+
fastapi>=0.112.0
7878
python-multipart>=0.0.9
79-
tests_require =
79+
tests_require =
8080
tox>=3.24.3
8181
pytest>=7.0.1
82-
setup_requires =
82+
setup_requires =
8383
pytest-runner
8484
packages = find:
85-
package_dir =
85+
package_dir =
8686
= src
8787
include_package_data = True
8888

@@ -93,7 +93,7 @@ test = pytest
9393
where = src
9494

9595
[options.extras_require]
96-
development =
96+
development =
9797
pip-tools>=7.4.1
9898
black>=24.8.0
9999
bump2version>=1.0.1
@@ -105,7 +105,7 @@ development =
105105
pytest>=7.4.0
106106
pytest-cov>=4.1.0
107107
beautifulsoup4>=4.12.3
108-
docs =
108+
docs =
109109
sphinx>=3.4.3
110110
ipykernel>=5.4.3
111111
nbsphinx>=0.8.1
@@ -119,7 +119,7 @@ universal = 1
119119
[bumpversion:part:release]
120120
optional_value = placeholder
121121
first_value = placeholder
122-
values =
122+
values =
123123
placeholder
124124
a
125125

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
if __name__ == "__main__":
7-
setup(version="0.8.7")
7+
setup(version="0.9.0")

Diff for: src/sbmlutils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pathlib import Path
44

55
__author__ = "Matthias König"
6-
__version__ = "0.8.7"
6+
__version__ = "0.9.0"
77

88

99
program_name = "sbmlutils"

0 commit comments

Comments
 (0)