From 8c88f3dc2e81906c2ef1f0c9cf8d681f09f8374e Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Thu, 7 Nov 2024 16:35:23 -0500 Subject: [PATCH] Suppress the "easy_install command is deprecated" warning (#676) This warning comes up when building ament_python packages with the --symlink-install option. --- 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', ]