From 08b4553bef389ea79e6a030633cb6c821639ce75 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Thu, 7 Nov 2024 16:16:12 -0500 Subject: [PATCH] Suppress the "easy_install command is deprecated" warning. This warning comes up when building ament_python packages with the --symlink-install option. Signed-off-by: Chris Lalancette --- colcon_core/task/python/build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colcon_core/task/python/build.py b/colcon_core/task/python/build.py index 5320a939..30b2ae89 100644 --- a/colcon_core/task/python/build.py +++ b/colcon_core/task/python/build.py @@ -29,6 +29,8 @@ sys.executable, '-W', 'ignore:setup.py install is deprecated', + '-W', + 'ignore:easy_install command is deprecated', ]