From 6ce4d9f855a7fc332aec00c79f476fe7335096ca Mon Sep 17 00:00:00 2001 From: paxtonfitzpatrick Date: Tue, 15 Jun 2021 14:48:51 -0400 Subject: [PATCH] bump version to 0.7.0 --- hypertools/config.py | 5 ++++- setup.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/hypertools/config.py b/hypertools/config.py index 63af8876..eacb1911 100644 --- a/hypertools/config.py +++ b/hypertools/config.py @@ -1 +1,4 @@ -__version__ = "0.6.3" +from pkg_resources import get_distribution + + +__version__ = get_distribution('hypertools') diff --git a/setup.py b/setup.py index 092eb3d6..81b50697 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ os.environ["MPLCONFIGDIR"] = "." NAME = 'hypertools' -VERSION = '0.6.3' +VERSION = '0.7.0' AUTHOR = 'Contextual Dynamics Lab' AUTHOR_EMAIL = 'contextualdynamics@gmail.com' URL = 'https://github.com/ContextLab/hypertools'