-
Notifications
You must be signed in to change notification settings - Fork 43
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
Fix for ROS Noetic #371
base: master
Are you sure you want to change the base?
Fix for ROS Noetic #371
Conversation
@@ -46,7 +46,7 @@ def parse_filename(filestr): | |||
pkgname = ret.group(1) | |||
#packagepath = commands.getoutput('rospack find %s'%(pkgname)) | |||
packagepath = subprocess.check_output(['rospack', 'find', pkgname]) | |||
packagepath = packagepath.rstrip('\n') | |||
packagepath = packagepath.decode().rstrip('\n') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
confirmed this works on python2 too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This script failed to run in melodic. I'll make it compatible with both ros version
choreonoid_noetic.patch
Outdated
- <depend>python</depend> | ||
- <depend>python-numpy</depend> | ||
+ <!-- <depend>python</depend> --> | ||
+ <!-- <depend>python-numpy</depend> --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kirohy are
related to Noetic support? |
No. Noetic patch is based on https://github.com/start-jsk/rtmros_choreonoid/blob/master/choreonoid.patch, and only python options are changed from it. |
choreonoid_noetic.patch
for building choreonoid-1.7 in NoeticThese changes will enable to build and run choreonoid samples in
hrpsys_choreonoid_tutorials/launch
.