diff --git a/setup.cfg b/setup.cfg index 4e664997..beae79c6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ norecursedirs = doc [metadata] name = skan -version = 0.10.0rc2 +version = 0.10.0 url = https://jni.github.io/skan download_url = https://github.com/jni/skan license = BSD 3-Clause diff --git a/src/skan/__init__.py b/src/skan/__init__.py index b97142a8..584a5d4a 100644 --- a/src/skan/__init__.py +++ b/src/skan/__init__.py @@ -1,5 +1,5 @@ from .csr import skeleton_to_csgraph, branch_statistics, summarize, Skeleton -__version__ = '0.10.0rc2' +__version__ = '0.10.0' __all__ = ['skeleton_to_csgraph', 'branch_statistics', 'summarize', 'Skeleton']