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
/actionlib/library.py", line 170, in _message_to_yaml: if type(msg) in [int, long, float, str, bool]: needs change to if type(msg) in [int, float, str, bool]:
from cStringIO import StringIO needs change to from io import BytesIO
The text was updated successfully, but these errors were encountered:
I wonder if we should really try to patch melodic enough to work reasonably with python 3 or if we should just rebuild wiht python 2.7?
Or maybe we should have both versions available, at least, and say that py 3.6 is more experimental.
I think python3 with melodic would be one of the big selling points for conda with Ros. We might run into issues with the python2 build, too, especially as packages aren't built by default with python2 on conda forge anymore. But we certainly will run into more of those issues. Not sure what's the best way forward :(
if type(msg) in [int, long, float, str, bool]:
needs change toif type(msg) in [int, float, str, bool]:
from cStringIO import StringIO
needs change tofrom io import BytesIO
The text was updated successfully, but these errors were encountered: