1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
From: Leopold Palomo-Avellaneda <leo@alaxarxa.net>
Date: Wed, 6 May 2020 18:42:13 +0200
Subject: Patch to force use Python 3
---
camera_calibration/scripts/tarfile_calibration.py | 2 +-
camera_calibration/setup.py | 2 +-
camera_calibration/src/camera_calibration/calibrator.py | 2 +-
camera_calibration/test/directed.py | 2 +-
camera_calibration/test/multiple_boards.py | 2 +-
image_proc/cfg/CropDecimate.cfg | 2 +-
image_proc/cfg/Debayer.cfg | 2 +-
image_proc/cfg/Rectify.cfg | 2 +-
image_proc/cfg/Resize.cfg | 2 +-
image_publisher/cfg/ImagePublisher.cfg | 2 +-
image_rotate/cfg/ImageRotate.cfg | 2 +-
image_view/cfg/ImageView.cfg | 2 +-
image_view/scripts/extract_images_sync | 2 +-
stereo_image_proc/cfg/Disparity.cfg | 2 +-
14 files changed, 14 insertions(+), 14 deletions(-)
--- a/camera_calibration/scripts/tarfile_calibration.py
+++ b/camera_calibration/scripts/tarfile_calibration.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
#
# Software License Agreement (BSD License)
#
--- a/camera_calibration/setup.py
+++ b/camera_calibration/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
from setuptools import setup
from catkin_pkg.python_setup import generate_distutils_setup
--- a/camera_calibration/src/camera_calibration/calibrator.py
+++ b/camera_calibration/src/camera_calibration/calibrator.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
#
# Software License Agreement (BSD License)
#
--- a/camera_calibration/test/directed.py
+++ b/camera_calibration/test/directed.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
#
# Software License Agreement (BSD License)
#
--- a/camera_calibration/test/multiple_boards.py
+++ b/camera_calibration/test/multiple_boards.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
#
# Software License Agreement (BSD License)
#
--- a/image_proc/cfg/CropDecimate.cfg
+++ b/image_proc/cfg/CropDecimate.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
PACKAGE='image_proc'
--- a/image_proc/cfg/Debayer.cfg
+++ b/image_proc/cfg/Debayer.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
PACKAGE='image_proc'
--- a/image_proc/cfg/Rectify.cfg
+++ b/image_proc/cfg/Rectify.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
PACKAGE='image_proc'
--- a/image_proc/cfg/Resize.cfg
+++ b/image_proc/cfg/Resize.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
from dynamic_reconfigure.parameter_generator_catkin import *
--- a/image_publisher/cfg/ImagePublisher.cfg
+++ b/image_publisher/cfg/ImagePublisher.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
# Software License Agreement (BSD License)
#
# Copyright (c) 2010, Willow Garage, Inc.
--- a/image_rotate/cfg/ImageRotate.cfg
+++ b/image_rotate/cfg/ImageRotate.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
# Software License Agreement (BSD License)
#
# Copyright (c) 2010, Willow Garage, Inc.
--- a/image_view/cfg/ImageView.cfg
+++ b/image_view/cfg/ImageView.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
PACKAGE='image_view'
from dynamic_reconfigure.parameter_generator_catkin import *
--- a/image_view/scripts/extract_images_sync
+++ b/image_view/scripts/extract_images_sync
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Software License Agreement (BSD License)
#
--- a/stereo_image_proc/cfg/Disparity.cfg
+++ b/stereo_image_proc/cfg/Disparity.cfg
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
# Declare parameters that control stereo processing
--- a/camera_calibration/nodes/cameracalibrator.py
+++ b/camera_calibration/nodes/cameracalibrator.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Software License Agreement (BSD License)
#
--- a/camera_calibration/nodes/cameracheck.py
+++ b/camera_calibration/nodes/cameracheck.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Software License Agreement (BSD License)
#
--- a/camera_calibration/src/camera_calibration/camera_calibrator.py
+++ b/camera_calibration/src/camera_calibration/camera_calibrator.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Software License Agreement (BSD License)
#
--- a/camera_calibration/src/camera_calibration/camera_checker.py
+++ b/camera_calibration/src/camera_calibration/camera_checker.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
#
# Software License Agreement (BSD License)
#
|