Skip to content

Commit 3b3125b

Browse files
Bump version: 0.1.10 → 0.1.11
1 parent 28fc23d commit 3b3125b

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

setup.cfg

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 0.1.10
2+
current_version = 0.1.11
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,15 +37,15 @@ 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.2
5050
scipy>=1.5.1
5151
sympy>=1.6.1
@@ -54,42 +54,42 @@ install_requires =
5454
xarray>=0.16.1
5555
bottleneck>=1.3.2
5656
pint>=0.16.1
57-
57+
5858
python-libsbml-experimental>=5.18.1
5959
python-libsedml>=2.0.11
6060
python-libcombine>=0.2.7
6161
python-libnuml>=1.1.1
62-
62+
6363
libroadrunner>=2.0.0
64-
64+
6565
psutil>=5.6.3
6666
setproctitle>=1.1.10
67-
67+
6868
matplotlib>=3.3.0
6969
plotly>=4.12.0
7070
altair>=4.1.0
7171
seaborn>=0.10.1
72-
72+
7373
coloredlogs
7474
pyDOE>=0.3.8
75-
75+
7676
Sphinx
7777
sphinx_rtd_theme
7878
recommonmark
79-
79+
8080
ray>=1.0.1
81-
tests_require =
81+
tests_require =
8282
tox
8383
packages = find:
84-
package_dir =
84+
package_dir =
8585
= src
8686
include_package_data = True
8787

8888
[options.packages.find]
8989
where = src
9090

9191
[options.extras_require]
92-
development =
92+
development =
9393
black
9494
bump2version
9595
isort
@@ -103,7 +103,7 @@ universal = 1
103103
[bumpversion:part:release]
104104
optional_value = placeholder
105105
first_value = placeholder
106-
values =
106+
values =
107107
placeholder
108108
a
109109

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.10")
6+
setup(version="0.1.11")

src/sbmlsim/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22

3-
__version__ = "0.1.10"
4-
__version__ = "0.1.10"
3+
__version__ = "0.1.11"
4+
__version__ = "0.1.11"
55

66
BASE_PATH = Path(__file__).parent

0 commit comments

Comments
 (0)