Skip to content

Commit

Permalink
Bump version: 0.4.5 → 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Jan 21, 2021
1 parent 3005846 commit 4deffed
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.4.5
current_version = 0.4.6
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 = sbmlutils
url = https://github.com/matthiaskoenig/sbmlutils
download_url = https://pypi.org/project/sbmlutils
project_urls =
project_urls =
Source Code = https://github.com/matthiaskoenig/sbmlutils
Documentation = https://sbmlutils.readthedocs.io
Bug Tracker = https://github.com/matthiaskoenig/sbmlutils/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 = sbmlutils are utilities for working with 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.6
install_requires =
install_requires =
numpy>=1.19.3
scipy>=1.6.0
matplotlib>=3.3.3
Expand All @@ -62,13 +62,13 @@ install_requires =
antimony>=2.12.0
libroadrunner>=2.0.4
pytest>=6.2.1
tests_require =
tests_require =
tox
pytest
setup_requires =
setup_requires =
pytest-runner
packages = find:
package_dir =
package_dir =
= src
include_package_data = True

Expand All @@ -79,7 +79,7 @@ test = pytest
where = src

[options.extras_require]
development =
development =
black
bump2version
isort
Expand All @@ -92,7 +92,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 @@ -4,4 +4,4 @@


if __name__ == "__main__":
setup(version="0.4.5")
setup(version="0.4.6")
2 changes: 1 addition & 1 deletion src/sbmlutils/__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.4.5"
__version__ = "0.4.6"

program_name = "sbmlutils"

Expand Down

0 comments on commit 4deffed

Please sign in to comment.