Skip to content

Commit ae67fa6

Browse files
Bump version: 0.1.12 → 0.1.13
1 parent 94d66ea commit ae67fa6

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

setup.cfg

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.1.12
2+
current_version = 0.1.13
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 = sbmlsim
1616
url = https://github.com/matthiaskoenig/sbmlsim
1717
download_url = https://pypi.org/project/sbmlsim
18-
project_urls =
18+
project_urls =
1919
Source Code = https://github.com/matthiaskoenig/sbmlsim
2020
Documentation = https://sbmlsim.readthedocs.io
2121
Bug Tracker = https://github.com/matthiaskoenig/sbmlsim/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 :: 4 - Beta
2828
Intended Audience :: Science/Research
2929
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
@@ -37,61 +37,61 @@ license = LGPL-3.0
3737
description = sbmlsim are utilities for simulation of SBML.
3838
long_description = file: README.rst
3939
long_description_content_type = text/x-rst
40-
keywords =
40+
keywords =
4141
modeling
4242
standardization
4343
SBML
4444

4545
[options]
4646
zip_safe = True
4747
python_requires = >=3.7
48-
install_requires =
48+
install_requires =
4949
numpy==1.19.3
50-
depinfo>=0.1.7
50+
depinfo>=0.1.7
5151
scipy>=1.6.0
5252
sympy>=1.7.1
5353
pandas>=1.2.1
5454
tables>=3.6.1
5555
xarray>=0.16.1
5656
bottleneck>=1.3.2
5757
pint>=0.16.1
58-
Jinja2>=2.11.2
59-
58+
Jinja2>=2.11.2
59+
6060
python-libsbml-experimental>=5.19.0
6161
python-libsedml>=2.0.15
6262
python-libcombine>=0.2.7
6363
python-libnuml>=1.1.3
64-
64+
6565
libroadrunner>=2.0.5
66-
66+
6767
psutil>=5.6.3
6868
setproctitle>=1.1.10
69-
69+
7070
matplotlib>=3.3.3
7171
plotly>=4.12.0
7272
altair>=4.1.0
7373
seaborn>=0.10.1
74-
74+
7575
coloredlogs
7676
pyDOE>=0.3.8
77-
77+
7878
Sphinx
7979
sphinx_rtd_theme
8080
recommonmark
81-
81+
8282
ray>=1.1.0
83-
tests_require =
83+
tests_require =
8484
tox
8585
packages = find:
86-
package_dir =
86+
package_dir =
8787
= src
8888
include_package_data = True
8989

9090
[options.packages.find]
9191
where = src
9292

9393
[options.extras_require]
94-
development =
94+
development =
9595
black
9696
bump2version
9797
isort
@@ -105,7 +105,7 @@ universal = 1
105105
[bumpversion:part:release]
106106
optional_value = placeholder
107107
first_value = placeholder
108-
values =
108+
values =
109109
placeholder
110110
a
111111

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44

55
if __name__ == "__main__":
6-
setup(version="0.1.12")
6+
setup(version="0.1.13")

src/sbmlsim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from pathlib import Path
22

33
__author__ = "Matthias Koenig"
4-
__version__ = "0.1.12"
4+
__version__ = "0.1.13"
55

66

77
from sbmlsim.utils import show_versions

0 commit comments

Comments
 (0)