Skip to content

Commit

Permalink
Bump version: 0.2.1 → 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Sep 27, 2021
1 parent 9a6e678 commit 51f5141
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 28 deletions.
51 changes: 25 additions & 26 deletions setup.cfg
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.2.2
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,94 +15,93 @@ 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)
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
license = LGPL-3.0
description = sbmlsim are utilities for the simulation of SBML models.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
keywords =
modeling
standardization
SBML
SED-ML
COMBINE
SED-ML
COMBINE

[options]
zip_safe = True
python_requires = >=3.7
install_requires =
install_requires =
sbmlutils>=0.5.4
numpy>=1.21
depinfo>=0.1.7
scipy>=1.7
sympy>=1.7
pandas>=1.3
pint>=0.17
Jinja2>=3.0
ray>=1.6.0
xarray>=0.19

pint>=0.17
Jinja2>=3.0
ray>=1.6.0
xarray>=0.19
tables>=3.6.1
bottleneck>=1.3.2

python-libsbml-experimental>=5.19.0
libroadrunner-experimental>=2.0.10
libroadrunner-experimental>=2.0.10
python-libsedml>=2.0.23
python-libcombine>=0.2.13
python-libnuml>=1.1.3

psutil>=5.6.3
setproctitle>=1.1.10

matplotlib>=3.4
plotly>=4.12.0
altair>=4.1.0
altair_viewer
seaborn>=0.11.1

coloredlogs>=14.0
pyDOE>=0.3.8

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
pytest>=6.1
pytest-cov>=2.8.1
docs =
docs =
sphinx>=3.4.3
recommonmark
recommonmark
ipykernel>=5.4.3
nbsphinx>=0.8.1
sphinx_rtd_theme>=0.5.1
Expand All @@ -115,7 +114,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.2.1")
setup(version="0.2.2")
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.2.1"
__version__ = "0.2.2"


from sbmlsim.utils import show_versions
Expand Down

0 comments on commit 51f5141

Please sign in to comment.