Skip to content

Commit

Permalink
Bump version: 0.1.12 → 0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Feb 4, 2021
1 parent 94d66ea commit ae67fa6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
38 changes: 19 additions & 19 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.1.12
current_version = 0.1.13
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,61 +37,61 @@ 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
depinfo>=0.1.7
scipy>=1.6.0
sympy>=1.7.1
pandas>=1.2.1
tables>=3.6.1
xarray>=0.16.1
bottleneck>=1.3.2
pint>=0.16.1
Jinja2>=2.11.2

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.1.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
Expand All @@ -105,7 +105,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
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


if __name__ == "__main__":
setup(version="0.1.12")
setup(version="0.1.13")
2 changes: 1 addition & 1 deletion src/sbmlsim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pathlib import Path

__author__ = "Matthias Koenig"
__version__ = "0.1.12"
__version__ = "0.1.13"


from sbmlsim.utils import show_versions
Expand Down

0 comments on commit ae67fa6

Please sign in to comment.