From 853d9ed8c267a8214a52b981f16d8be3d5b1e69c Mon Sep 17 00:00:00 2001 From: Pierre Karashchuk Date: Mon, 19 Aug 2019 12:36:10 -0700 Subject: [PATCH] bump version, require latest calligator --- anipose/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anipose/__init__.py b/anipose/__init__.py index 259501d..9eb8daf 100644 --- a/anipose/__init__.py +++ b/anipose/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -__version__ = '0.5.0' +__version__ = '0.5.2' VERSION = __version__ from . import common diff --git a/setup.py b/setup.py index 447adb9..ae2d897 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="anipose", - version="0.5.0", + version="0.5.2", author="Pierre Karashchuk", author_email="krchtchk@gmail.com", description="Framework for scalable DeepLabCut based analysis including 3D tracking", @@ -25,7 +25,7 @@ }, install_requires=[ 'deeplabcut>=2.0.4.1', - 'calligator>=0.2.4', + 'calligator>=0.2.5', 'opencv-python', 'toml', 'numpy',