From b9859b5e575e962581920d36807f2987da17ebfc Mon Sep 17 00:00:00 2001 From: Lili Karashchuk Date: Wed, 4 Sep 2024 15:31:01 -0700 Subject: [PATCH] update aniposelib requirement (for optim chunking) --- 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 e745ab3..024896a 100644 --- a/anipose/__init__.py +++ b/anipose/__init__.py @@ -2,6 +2,6 @@ import sys -__version__ = '1.1.10' +__version__ = '1.1.11' VERSION = __version__ diff --git a/setup.py b/setup.py index 853596f..b2a3748 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="anipose", - version="1.1.10", + version="1.1.11", author="Lili 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', - 'aniposelib>=0.4.3', + 'aniposelib>=0.7.0', 'opencv-contrib-python', 'toml', 'numpy',