From 509745d92f1cffe15b839a97861376e3c20336cb Mon Sep 17 00:00:00 2001 From: Jeff Olivier Date: Mon, 8 Jul 2024 14:13:30 -0600 Subject: [PATCH] DAOS-16168 build: Ignore scons version deprecation (#14715) (#14719) Disable warning for deprecated support for python version so it doesn't fail the build. Signed-off-by: Jeff Olivier --- SConstruct | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SConstruct b/SConstruct index 2c44f5060b8..72548a043d7 100644 --- a/SConstruct +++ b/SConstruct @@ -375,6 +375,9 @@ def scons(): deps_env = Environment() + # Silence deprecation warning so it doesn't fail the build + SetOption('warn', ['no-python-version']) + add_command_line_options() # Scons strips out the environment, however that is not always desirable so add back in