From d84e9da10f2f7d69df063b05340839db4e32a219 Mon Sep 17 00:00:00 2001 From: Jeff Olivier Date: Mon, 8 Jul 2024 14:12:41 -0600 Subject: [PATCH] DAOS-16168 build: Ignore scons version deprecation (#14715) (#14718) 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 cf9e9749ae0..cd4a7d0421e 100644 --- a/SConstruct +++ b/SConstruct @@ -373,6 +373,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