Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neuroglia/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""neuroglia - pipelines for transformations for neurophysiology data"""

__version__ = '0.2.9'
__version__ = '0.2.10'
__author__ = 'Justin Kiggins <justink@alleninstitute.org>'
__all__ = []

Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[bumpversion]
current_version = 0.2.9
current_version = 0.2.10
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<n>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}.{release}{n}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = gamma
values =
values =
a
b
rc
Expand All @@ -31,3 +31,4 @@ replace = __version__ = '{new_version}'

[tool:pytest]
testpaths = tests

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="neuroglia",
version="0.2.9",
version="0.2.10",
url="https://github.com/AllenInstitute/neuroglia",

author="Justin Kiggins",
Expand Down