From c86e514616830f73945e9925c61c9a0d090d5739 Mon Sep 17 00:00:00 2001 From: Martin Yeo Date: Tue, 2 Jul 2024 14:33:13 +0100 Subject: [PATCH] Adapt setup.py for pypa/setuptools@2db55275f. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 28e7a003a9..c59931c775 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def _build_std_names(self, directory): script_path = os.path.join("tools", "generate_std_names.py") xml_path = os.path.join("etc", "cf-standard-name-table.xml") module_path = os.path.join(directory, "iris", "std_names.py") - args = (sys.executable, script_path, xml_path, module_path) + args = [sys.executable, script_path, xml_path, module_path] self.spawn(args) def finalize_options(self):