Skip to content

Commit 873fd6b

Browse files
Bump version: 0.8.0 → 0.8.1
1 parent 406629a commit 873fd6b

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

Diff for: setup.cfg

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.8.0
2+
current_version = 0.8.1
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,52 +15,52 @@ 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.8
3232
Programming Language :: Python :: 3.9
3333
Programming Language :: Python :: 3.10
34-
Programming Language :: Python :: 3.11
34+
Programming Language :: Python :: 3.11
3535
Programming Language :: Python :: Implementation :: CPython
3636
Topic :: Scientific/Engineering
3737
Topic :: Scientific/Engineering :: Bio-Informatics
3838
license = LGPL-3.0
3939
description = sbmlutils are utilities for working with SBML.
4040
long_description = file: README.rst
4141
long_description_content_type = text/x-rst
42-
keywords =
42+
keywords =
4343
modeling
4444
standardization
4545
SBML
4646

4747
[options]
4848
zip_safe = True
4949
python_requires = >=3.8
50-
install_requires =
50+
install_requires =
5151
pymetadata>=0.3.8
52-
52+
5353
depinfo
5454
rich
5555
lxml
5656
requests
5757
jinja2
5858
xmltodict
59-
59+
6060
numpy>=1.21.1
6161
python-libsbml>=5.19.7
6262
antimony>=2.13.2
63-
63+
6464
scipy>=1.8
6565
pandas>=1.4
6666
pint>=0.18
@@ -69,22 +69,22 @@ install_requires =
6969
markdown-it-py>=2.0.1
7070
openpyxl>=3.0.9
7171
xmlschema>=1.9.2
72-
72+
7373
matplotlib>=3.5
74-
74+
7575
fastapi>=0.73.0
7676
uvicorn>=0.14.4
7777
python-multipart>=0.0.5
7878
py2cytoscape>=0.7.1
79-
79+
8080
libroadrunner
81-
tests_require =
81+
tests_require =
8282
tox>=3.24.3
8383
pytest>=7.0.1
84-
setup_requires =
84+
setup_requires =
8585
pytest-runner
8686
packages = find:
87-
package_dir =
87+
package_dir =
8888
= src
8989
include_package_data = True
9090

@@ -95,7 +95,7 @@ test = pytest
9595
where = src
9696

9797
[options.extras_require]
98-
development =
98+
development =
9999
pip-tools>6.5.1
100100
black>=22.1.0
101101
bump2version>=1.0.1
@@ -106,7 +106,7 @@ development =
106106
mypy>=0.991
107107
pytest>=7.0.1
108108
pytest-cov>=3.0.0
109-
docs =
109+
docs =
110110
sphinx>=3.4.3
111111
ipykernel>=5.4.3
112112
nbsphinx>=0.8.1
@@ -120,7 +120,7 @@ universal = 1
120120
[bumpversion:part:release]
121121
optional_value = placeholder
122122
first_value = placeholder
123-
values =
123+
values =
124124
placeholder
125125
a
126126

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.0")
7+
setup(version="0.8.1")

Diff for: src/sbmlutils/__init__.py

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

44
__author__ = "Matthias König"
5-
__version__ = "0.8.0"
5+
__version__ = "0.8.1"
66

77

88
program_name = "sbmlutils"

0 commit comments

Comments
 (0)