Skip to content
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

Noetic release #4

Merged
merged 4 commits into from May 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(rqt_robot_dashboard)
# Load catkin and all dependencies required for this package
find_package(catkin REQUIRED)
Expand Down
27 changes: 17 additions & 10 deletions package.xml
@@ -1,4 +1,8 @@
<package>
<?xml version="1.0"?>
<?xml-model
href="http://download.ros.org/schema/package_format3.xsd"
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>rqt_robot_dashboard</name>
<version>0.5.7</version>
<description>rqt_robot_dashboard provides an infrastructure for building robot dashboard plugins in rqt.</description>
Expand All @@ -14,15 +18,18 @@

<buildtool_depend>catkin</buildtool_depend>

<run_depend>diagnostic_msgs</run_depend>
<run_depend version_gte="0.2.19">python_qt_binding</run_depend>
<run_depend>qt_gui</run_depend>
<run_depend>rospy</run_depend>
<run_depend version_gte="0.3.1">rqt_console</run_depend>
<run_depend>rqt_gui</run_depend>
<run_depend>rqt_gui_py</run_depend>
<run_depend>rqt_nav_view</run_depend>
<run_depend>rqt_robot_monitor</run_depend>
<buildtool_depend condition="$ROS_PYTHON_VERSION == 2">python-setuptools</buildtool_depend>
<buildtool_depend condition="$ROS_PYTHON_VERSION == 3">python3-setuptools</buildtool_depend>

<exec_depend>diagnostic_msgs</exec_depend>
<exec_depend version_gte="0.2.19">python_qt_binding</exec_depend>
<exec_depend>qt_gui</exec_depend>
<exec_depend>rospy</exec_depend>
<exec_depend version_gte="0.3.1">rqt_console</exec_depend>
<exec_depend>rqt_gui</exec_depend>
<exec_depend>rqt_gui_py</exec_depend>
<exec_depend>rqt_nav_view</exec_depend>
<exec_depend>rqt_robot_monitor</exec_depend>

<export>
<rosdoc config="rosdoc.yaml" />
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup
from catkin_pkg.python_setup import generate_distutils_setup

d = generate_distutils_setup(
Expand Down