Skip to content

Commit

Permalink
Bump version: 0.1.10 → 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Nov 11, 2020
1 parent 28fc23d commit 3b3125b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
34 changes: 17 additions & 17 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.1.10
current_version = 0.1.11
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.2
scipy>=1.5.1
sympy>=1.6.1
Expand All @@ -54,42 +54,42 @@ install_requires =
xarray>=0.16.1
bottleneck>=1.3.2
pint>=0.16.1

python-libsbml-experimental>=5.18.1
python-libsedml>=2.0.11
python-libcombine>=0.2.7
python-libnuml>=1.1.1

libroadrunner>=2.0.0

psutil>=5.6.3
setproctitle>=1.1.10

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

coloredlogs
pyDOE>=0.3.8

Sphinx
sphinx_rtd_theme
recommonmark

ray>=1.0.1
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 @@ -103,7 +103,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.10")
setup(version="0.1.11")
4 changes: 2 additions & 2 deletions src/sbmlsim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

__version__ = "0.1.10"
__version__ = "0.1.10"
__version__ = "0.1.11"
__version__ = "0.1.11"

BASE_PATH = Path(__file__).parent

0 comments on commit 3b3125b

Please sign in to comment.