Skip to content

Commit

Permalink
Bump version: 0.1.13 → 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Feb 28, 2021
1 parent 3908465 commit 922477a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
36 changes: 18 additions & 18 deletions setup.cfg
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.1.13
current_version = 0.1.14
commit = True
tag = True
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]*)(?P<num>\d*)
serialize =
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
tag_name = {new_version}
Expand All @@ -15,15 +15,15 @@ tag_name = {new_version}
name = sbmlsim
url = https://github.com/matthiaskoenig/sbmlsim
download_url = https://pypi.org/project/sbmlsim
project_urls =
project_urls =
Source Code = https://github.com/matthiaskoenig/sbmlsim
Documentation = https://sbmlsim.readthedocs.io
Bug Tracker = https://github.com/matthiaskoenig/sbmlsim/issues
author = Matthias Koenig
author_email = konigmatt@googlemail.com
maintainer = Matthias Koenig
maintainer_email = konigmatt@googlemail.com
classifiers =
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Expand All @@ -37,15 +37,15 @@ license = LGPL-3.0
description = sbmlsim are utilities for simulation of SBML.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
keywords =
modeling
standardization
SBML

[options]
zip_safe = True
python_requires = >=3.7
install_requires =
install_requires =
numpy==1.19.3
depinfo>=0.1.7
scipy>=1.6.0
Expand All @@ -56,47 +56,47 @@ install_requires =
bottleneck>=1.3.2
pint>=0.16.1
Jinja2>=2.11.2

python-libsbml-experimental>=5.19.0
python-libsedml>=2.0.15
python-libcombine>=0.2.7
python-libnuml>=1.1.3

libroadrunner>=2.0.5

psutil>=5.6.3
setproctitle>=1.1.10

matplotlib>=3.3.3
plotly>=4.12.0
altair>=4.1.0
seaborn>=0.10.1

coloredlogs
pyDOE>=0.3.8

Sphinx
sphinx_rtd_theme
recommonmark

ray>=1.2.0
tests_require =
tests_require =
tox
packages = find:
package_dir =
package_dir =
= src
include_package_data = True

[options.packages.find]
where = src

[options.extras_require]
development =
development =
black
bump2version
isort
tox
mypy
mypy
pytest>=6.1
pytest-cov>=2.8.1

Expand All @@ -106,7 +106,7 @@ universal = 1
[bumpversion:part:release]
optional_value = placeholder
first_value = placeholder
values =
values =
placeholder
a

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,4 +4,4 @@


if __name__ == "__main__":
setup(version="0.1.13")
setup(version="0.1.14")
2 changes: 1 addition & 1 deletion src/sbmlsim/__init__.py
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path

__author__ = "Matthias Koenig"
__version__ = "0.1.13"
__version__ = "0.1.14"


from sbmlsim.utils import show_versions
Expand Down

0 comments on commit 922477a

Please sign in to comment.