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 2 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
5 changes: 4 additions & 1 deletion setup.py
@@ -1,6 +1,9 @@
#!/usr/bin/env python

from distutils.core import setup
try:
from distutils.core import setup
except ImportError:
from setuptools import setup
sloretz marked this conversation as resolved.
Show resolved Hide resolved
from catkin_pkg.python_setup import generate_distutils_setup

d = generate_distutils_setup(
Expand Down