You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While having same version numbering, code on pypi is different from this repo. This results in non-functioning example code, when trying to run with pypi package.
How to reproduce
pip install solopy
try to run examples/BLDC_Speed_Control.py .
result:
AttributeError: 'SoloMotorControllerUart' object has no attribute 'connection_is_working'.
analysis
I've compared SOLOMotorControllersUart.py from pypi package with github code.
both claim # @version 3.1.1 in the header
checked version installed from pypi, it is 3.1.3
compared actual code. It has different interfaces
pypi : serial_close and serial_is_working
repo: disconnect and connection_is_working.
conclusion
Two incompatible code versions share the same version number.
The text was updated successfully, but these errors were encountered:
While having same version numbering, code on
pypi
is different from this repo. This results in non-functioning example code, when trying to run with pypi package.How to reproduce
pip install solopy
examples/BLDC_Speed_Control.py
.result:
analysis
I've compared
SOLOMotorControllersUart.py
from pypi package with github code.# @version 3.1.1
in the headerserial_close
andserial_is_working
disconnect
andconnection_is_working
.conclusion
Two incompatible code versions share the same version number.
The text was updated successfully, but these errors were encountered: