Skip to content

Commit df95806

Browse files
Bump version: 0.7.6 → 0.8.0
1 parent 612dd92 commit df95806

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

Diff for: setup.cfg

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.7.6
2+
current_version = 0.8.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,15 +15,15 @@ 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)
@@ -38,28 +38,28 @@ 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.8
49-
install_requires =
49+
install_requires =
5050
pymetadata>=0.3.8
51-
51+
5252
depinfo
5353
rich
5454
lxml
5555
requests
5656
jinja2
5757
xmltodict
58-
58+
5959
numpy>=1.21.1
6060
python-libsbml>=5.19.7
61-
antimony>=2.13.2
62-
61+
antimony>=2.13.2
62+
6363
scipy>=1.8
6464
pandas>=1.4
6565
pint>=0.18
@@ -68,22 +68,22 @@ install_requires =
6868
markdown-it-py>=2.0.1
6969
openpyxl>=3.0.9
7070
xmlschema>=1.9.2
71-
71+
7272
matplotlib>=3.5
73-
73+
7474
fastapi>=0.73.0
7575
uvicorn>=0.14.4
7676
python-multipart>=0.0.5
7777
py2cytoscape>=0.7.1
78-
79-
libroadrunner
80-
tests_require =
78+
79+
libroadrunner
80+
tests_require =
8181
tox>=3.24.3
8282
pytest>=7.0.1
83-
setup_requires =
83+
setup_requires =
8484
pytest-runner
8585
packages = find:
86-
package_dir =
86+
package_dir =
8787
= src
8888
include_package_data = True
8989

@@ -94,7 +94,7 @@ test = pytest
9494
where = src
9595

9696
[options.extras_require]
97-
development =
97+
development =
9898
pip-tools>6.5.1
9999
black>=22.1.0
100100
bump2version>=1.0.1
@@ -105,7 +105,7 @@ development =
105105
mypy>=0.991
106106
pytest>=7.0.1
107107
pytest-cov>=3.0.0
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.7.6")
7+
setup(version="0.8.0")

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.7.6"
5+
__version__ = "0.8.0"
66

77

88
program_name = "sbmlutils"

0 commit comments

Comments
 (0)