From d0801aaa98a36e9864e7f4fa018a997d1b9a392f Mon Sep 17 00:00:00 2001 From: Martin Yeo <40734014+trexfeathers@users.noreply.github.com> Date: Tue, 2 Jul 2024 16:34:09 +0100 Subject: [PATCH] Adapt setup.py for pypa/setuptools@2db55275f. (#6036) --- 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):