Skip to content

Commit

Permalink
Prepare for python3/noetic
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh committed Feb 22, 2021
1 parent d2db72a commit 27df532
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(hero_bringup)

find_package(catkin REQUIRED)
Expand Down
6 changes: 4 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
<exec_depend>geometry_msgs</exec_depend>
<exec_depend>hero_bridge</exec_depend>
<exec_depend>hsrb_description</exec_depend>
<exec_depend>python-rospkg</exec_depend>
<exec_depend>python-yaml</exec_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 2">python-rospkg</exec_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 3">python3-rospkg</exec_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 2">python-yaml</exec_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 3">python3-yaml</exec_depend>
<exec_depend>robot_launch_files</exec_depend>
<exec_depend>rospy</exec_depend>

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup
from catkin_pkg.python_setup import generate_distutils_setup

d = generate_distutils_setup(
Expand Down

0 comments on commit 27df532

Please sign in to comment.