Skip to content

Commit e7bdf48

Browse files
Bump version: 0.1.4 → 0.1.5
1 parent 213989c commit e7bdf48

File tree

3 files changed

+23
-24
lines changed

3 files changed

+23
-24
lines changed

setup.cfg

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,51 @@
11
[bumpversion]
2-
current_version = 0.1.4
2+
current_version = 0.1.5
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}
1313

14-
1514
[metadata]
1615
name = sbmlsim
1716
url = https://github.com/matthiaskoenig/sbmlsim
1817
download_url = https://pypi.org/project/sbmlsim
19-
project_urls =
18+
project_urls =
2019
Source Code = https://github.com/matthiaskoenig/sbmlsim
2120
Documentation = https://sbmlsim.readthedocs.io
2221
Bug Tracker = https://github.com/matthiaskoenig/sbmlsim/issues
2322
author = Matthias Koenig
2423
author_email = konigmatt@googlemail.com
2524
maintainer = Matthias Koenig
2625
maintainer_email = konigmatt@googlemail.com
27-
classifiers =
26+
classifiers =
2827
Development Status :: 4 - Beta
2928
Intended Audience :: Science/Research
3029
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
3130
Operating System :: OS Independent
3231
Programming Language :: Python :: 3.7
3332
Programming Language :: Python :: 3.8
3433
Programming Language :: Python :: Implementation :: CPython
35-
Topic :: Scientific/Engineering
34+
Topic :: Scientific/Engineering
3635
Topic :: Scientific/Engineering :: Bio-Informatics
3736
license = LGPL-3.0
3837
description = sbmlsim are utilities for simulation of SBML.
3938
long_description = file: README.rst
4039
long_description_content_type = text/x-rst
41-
keywords =
40+
keywords =
4241
modeling
4342
standardization
44-
SBML
43+
SBML
4544

4645
[options]
4746
zip_safe = True
4847
python_requires = >=3.7
49-
install_requires =
48+
install_requires =
5049
numpy>=1.19.2
5150
scipy>=1.5.1
5251
sympy>=1.6.1
@@ -55,51 +54,51 @@ install_requires =
5554
xarray>=0.15.1
5655
bottleneck>=1.3.2
5756
pint>=0.16.1
58-
57+
5958
python-libsbml-experimental>=5.18.1
6059
python-libsedml>=2.0.11
6160
python-libcombine>=0.2.7
6261
python-libnuml>=1.1.1
63-
62+
6463
libroadrunner>=2.0.0
65-
64+
6665
psutil>=5.6.3
6766
setproctitle>=1.1.10
68-
67+
6968
matplotlib>=3.3.0
7069
plotly
7170
altair>=4.1.0
7271
seaborn>=0.10.1
73-
72+
7473
coloredlogs
7574
pyDOE>=0.3.8
76-
75+
7776
Sphinx
7877
sphinx_rtd_theme
7978
recommonmark
80-
79+
8180
ray>=0.8.7
82-
tests_require =
81+
tests_require =
8382
tox
8483
packages = find:
85-
package_dir =
84+
package_dir =
8685
= src
8786

8887
[options.packages.find]
8988
where = src
9089

9190
[options.package_data]
92-
sbmlsim =
91+
sbmlsim =
9392
resources/*
9493
test/data/*
9594

9695
[options.extras_require]
97-
development =
96+
development =
9897
black
9998
bumpversion
10099
isort
101100
tox
102-
pytest>=6.1
101+
pytest>=6.1
103102
pytest-cov>=2.8.1
104103

105104
[bdist_wheel]
@@ -108,7 +107,7 @@ universal = 1
108107
[bumpversion:part:release]
109108
optional_value = placeholder
110109
first_value = placeholder
111-
values =
110+
values =
112111
placeholder
113112
a
114113

setup.py

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

66
# All other arguments are defined in `setup.cfg`.
77
if __name__ == "__main__":
8-
setup(version="0.1.4")
8+
setup(version="0.1.5")

src/sbmlsim/__init__.py

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

33
__author__ = "Matthias Koenig"
4-
__version__ = "0.1.4"
4+
__version__ = "0.1.5"
55

66
BASE_PATH = Path(__file__).parent

0 commit comments

Comments
 (0)