1
0
mirror of https://github.com/undera/pylgbst.git synced 2020-11-18 19:37:26 -08:00

Fix release issues

This commit is contained in:
Andrey Pohilko 2017-12-29 10:47:19 +03:00
parent dc863f11b1
commit 039a5030fd
2 changed files with 1 additions and 3 deletions

View File

@ -176,8 +176,6 @@ class EncodedMotor(Peripheral):
abs_primary = self._speed_abs(speed_primary)
abs_secondary = self._speed_abs(speed_secondary)
if abs_primary == -97 and abs_secondary == 3:
logging.info("P/S: %s/%s", abs_primary, abs_secondary)
if mtype == self.ANGLED_GROUP and (not abs_secondary or not abs_primary):
raise ValueError("Cannot have zero speed in double angled mode") # otherwise it gets nuts

View File

@ -2,7 +2,7 @@ from distutils.core import setup
setup(name='pylgbst',
description='Python library to interact with LEGO Move Hub (from Lego BOOST set)',
version='0.4',
version='0.6',
author='Andrey Pokhilko',
author_email='apc4@ya.ru',
packages=['pylgbst'],