From 567d2536e949dc10979f2c26e1c2b7fd3f2000ce Mon Sep 17 00:00:00 2001 From: Lazar Date: Thu, 29 Jul 2021 11:43:35 -0400 Subject: [PATCH] upped to version 0.0.7; now requiring requiring TauLidarCamera package version 0.0.5 or later for this module --- TauLidarServer/__version__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TauLidarServer/__version__.py b/TauLidarServer/__version__.py index d5392a5..b9028db 100644 --- a/TauLidarServer/__version__.py +++ b/TauLidarServer/__version__.py @@ -1,7 +1,7 @@ # Version of the package __title__ = 'TauLidarServer' __description__ = 'Python package for Tau Studio web application' -__version__ = '0.0.6' +__version__ = '0.0.7' __author__ = 'Onion Corporation' __author_email__ = 'hello@onioniot.com' __license__ = 'MIT' diff --git a/setup.py b/setup.py index eea79f0..a24bccc 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ url=about['__url__'], packages=setuptools.find_packages(), install_requires=[ - 'TauLidarCamera>=0.0.4', + 'TauLidarCamera>=0.0.5', 'websockets' ], license=about['__license__'],