From ecae049f76312e1c9e337bab3cb7d1bd4d2d4863 Mon Sep 17 00:00:00 2001 From: Marina Moreira Date: Fri, 22 Dec 2023 17:12:04 -0800 Subject: [PATCH] adding python3 to header updating to be deprecated command --- scripts/configure.sh | 2 +- .../scripts/apply_histogram_equalization_to_images.py | 2 +- tools/bag_processing/scripts/check_bag_for_gaps.py | 2 +- tools/bag_processing/scripts/clock_skew.py | 2 +- tools/bag_processing/scripts/csv_join.py | 2 +- tools/bag_processing/scripts/get_msg_stats.py | 2 +- tools/bag_processing/scripts/rosbag_debayer.py | 2 +- tools/bag_processing/scripts/rosbag_detect_bad_topics.py | 2 +- tools/bag_processing/scripts/rosbag_fix_all.py | 2 +- tools/bag_processing/scripts/rosbag_merge.py | 2 +- tools/bag_processing/scripts/rosbag_rewrite_types.py | 2 +- tools/bag_processing/scripts/rosbag_sample.py | 2 +- tools/bag_processing/scripts/rosbag_splice.py | 2 +- tools/bag_processing/scripts/rosbag_topic_filter.py | 2 +- tools/bag_processing/scripts/rosbag_trim.py | 2 +- tools/bag_processing/scripts/rosbag_verify.py | 2 +- tools/bag_processing/scripts/utilities/bmr_renumber_enum.py | 2 +- tools/bag_processing/test/test_fix_all.py | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/scripts/configure.sh b/scripts/configure.sh index 7ae438818d..8468ea9f96 100755 --- a/scripts/configure.sh +++ b/scripts/configure.sh @@ -356,7 +356,7 @@ if [ $armhf_build == 1 ] ; then --devel-space ${workspace_path:-armhf/}devel \ --log-space ${workspace_path:-armhf/}logs \ --install \ - --blacklist astrobee_handrail_8_5 astrobee_handrail_21_5 astrobee_handrail_30 astrobee_handrail_41_5 astrobee_iss astrobee_granite \ + --skiplist astrobee_handrail_8_5 astrobee_handrail_21_5 astrobee_handrail_30 astrobee_handrail_41_5 astrobee_iss astrobee_granite \ astrobee_dock astrobee_freeflyer astrobee_gazebo localization_rviz_plugins ground_dds_ros_bridge \ --cmake-args -DARMHF_CHROOT_DIR=$ARMHF_CHROOT_DIR ${armhf_opts} ${use_ctc} ${enable_gazebo} ${build_loc_rviz_plugins} ${extra_opts} \ -DCMAKE_BUILD_TYPE=Release diff --git a/tools/bag_processing/scripts/apply_histogram_equalization_to_images.py b/tools/bag_processing/scripts/apply_histogram_equalization_to_images.py index 528626b78a..560e542f1a 100755 --- a/tools/bag_processing/scripts/apply_histogram_equalization_to_images.py +++ b/tools/bag_processing/scripts/apply_histogram_equalization_to_images.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/check_bag_for_gaps.py b/tools/bag_processing/scripts/check_bag_for_gaps.py index 2d28b384b8..67f81e2952 100755 --- a/tools/bag_processing/scripts/check_bag_for_gaps.py +++ b/tools/bag_processing/scripts/check_bag_for_gaps.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/clock_skew.py b/tools/bag_processing/scripts/clock_skew.py index d9532e2f06..5122ef80b9 100755 --- a/tools/bag_processing/scripts/clock_skew.py +++ b/tools/bag_processing/scripts/clock_skew.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/csv_join.py b/tools/bag_processing/scripts/csv_join.py index 82afc6994a..98cc2f3f71 100755 --- a/tools/bag_processing/scripts/csv_join.py +++ b/tools/bag_processing/scripts/csv_join.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/get_msg_stats.py b/tools/bag_processing/scripts/get_msg_stats.py index 3dc0f11b61..eced70b9f3 100755 --- a/tools/bag_processing/scripts/get_msg_stats.py +++ b/tools/bag_processing/scripts/get_msg_stats.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_debayer.py b/tools/bag_processing/scripts/rosbag_debayer.py index 246cbf7afb..db972541fb 100755 --- a/tools/bag_processing/scripts/rosbag_debayer.py +++ b/tools/bag_processing/scripts/rosbag_debayer.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_detect_bad_topics.py b/tools/bag_processing/scripts/rosbag_detect_bad_topics.py index ba970327da..8162dd697d 100755 --- a/tools/bag_processing/scripts/rosbag_detect_bad_topics.py +++ b/tools/bag_processing/scripts/rosbag_detect_bad_topics.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_fix_all.py b/tools/bag_processing/scripts/rosbag_fix_all.py index 4fb7b554f6..734916db91 100755 --- a/tools/bag_processing/scripts/rosbag_fix_all.py +++ b/tools/bag_processing/scripts/rosbag_fix_all.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_merge.py b/tools/bag_processing/scripts/rosbag_merge.py index d24fa33335..4877b96ff0 100755 --- a/tools/bag_processing/scripts/rosbag_merge.py +++ b/tools/bag_processing/scripts/rosbag_merge.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_rewrite_types.py b/tools/bag_processing/scripts/rosbag_rewrite_types.py index 6f1d21780b..04c204279f 100755 --- a/tools/bag_processing/scripts/rosbag_rewrite_types.py +++ b/tools/bag_processing/scripts/rosbag_rewrite_types.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_sample.py b/tools/bag_processing/scripts/rosbag_sample.py index 4e8fdebfce..ecfddbc824 100755 --- a/tools/bag_processing/scripts/rosbag_sample.py +++ b/tools/bag_processing/scripts/rosbag_sample.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_splice.py b/tools/bag_processing/scripts/rosbag_splice.py index 2ac047381a..d8de7671ce 100755 --- a/tools/bag_processing/scripts/rosbag_splice.py +++ b/tools/bag_processing/scripts/rosbag_splice.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_topic_filter.py b/tools/bag_processing/scripts/rosbag_topic_filter.py index cac94fbc1c..e892be43e9 100755 --- a/tools/bag_processing/scripts/rosbag_topic_filter.py +++ b/tools/bag_processing/scripts/rosbag_topic_filter.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_trim.py b/tools/bag_processing/scripts/rosbag_trim.py index fc11a59c82..6598a4ed54 100755 --- a/tools/bag_processing/scripts/rosbag_trim.py +++ b/tools/bag_processing/scripts/rosbag_trim.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/rosbag_verify.py b/tools/bag_processing/scripts/rosbag_verify.py index 1e5538856c..10fe8ba360 100755 --- a/tools/bag_processing/scripts/rosbag_verify.py +++ b/tools/bag_processing/scripts/rosbag_verify.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/scripts/utilities/bmr_renumber_enum.py b/tools/bag_processing/scripts/utilities/bmr_renumber_enum.py index 5d0f46dfb4..3650c35d2f 100755 --- a/tools/bag_processing/scripts/utilities/bmr_renumber_enum.py +++ b/tools/bag_processing/scripts/utilities/bmr_renumber_enum.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. # diff --git a/tools/bag_processing/test/test_fix_all.py b/tools/bag_processing/test/test_fix_all.py index f075a1262f..acaab7c0cb 100755 --- a/tools/bag_processing/test/test_fix_all.py +++ b/tools/bag_processing/test/test_fix_all.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (c) 2017, United States Government, as represented by the # Administrator of the National Aeronautics and Space Administration. #