-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tf2_py compilation error with Python 3.5 #274
Comments
Can confirm, just ran into this issue while compiling ROS on Fedora 27 in a Python 3 venv. The linked patch fixes the problem for me. |
Did anyone run into the issue #259 even with this patch? |
This same logic appears to be exactly the same as the contents of the method
I'd like to see that function updated appropriately if there is an issue with it. |
Since the proposed patch appears redundant and with the help of @allenh1, tf2_py is confirmed to be building with python 3.5 https://gist.github.com/allenh1/3e81e2a6fb28b728dc24416826e99af9 I'm going to close this until there's a reproducible issue. |
* Generate callbacks after updating message_ Signed-off-by: ymd-stella <world.applepie@gmail.com> * Add test for multithread TransformListener to test_message_filter Signed-off-by: ymd-stella <world.applepie@gmail.com> Co-authored-by: ymd-stella <7959916+ymd-stella@users.noreply.github.com>
* Generate callbacks after updating message_ Signed-off-by: ymd-stella <world.applepie@gmail.com> * Add test for multithread TransformListener to test_message_filter Signed-off-by: ymd-stella <world.applepie@gmail.com>
The function
static PyObject *_allFramesAsDot
intf2_py.cpp
is incompatible with Python 3.5, as it invokesPyString_FromString
. You can find a (trivial) patch at https://gist.github.com/rochus/aa6d274a349c6aaff692a82fa45af450The text was updated successfully, but these errors were encountered: