From 25c517485d8690939a0bb3a6ce5ee60186947644 Mon Sep 17 00:00:00 2001 From: Ingmar Schoegl Date: Tue, 9 Aug 2022 20:38:43 -0500 Subject: [PATCH] [SCons] Fix converter scripts for python_package = 'none' --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 6b30045908..53c1b347f2 100644 --- a/SConstruct +++ b/SConstruct @@ -2185,10 +2185,11 @@ if any(target.startswith('test') for target in COMMAND_LINE_TARGETS): if env['python_package'] == 'none': # copy scripts from the full Cython module + # (skipping 'yaml2ck', which depends on the full Python module) test_py_int = env.Command('#build/python_local/cantera/__init__.py', '#interfaces/python_minimal/cantera/__init__.py', Copy('$TARGET', '$SOURCE')) - for script in ["ck2yaml", "ctml2yaml", "yaml2ck"]: + for script in ["ck2yaml", "ctml2yaml", "cti2yaml"]: s = env.Command('#build/python_local/cantera/{}.py'.format(script), '#interfaces/cython/cantera/{}.py'.format(script), Copy('$TARGET', '$SOURCE'))