Skip to content

Commit

Permalink
Adapt setup.py for pypa/setuptools@2db55275f. (#6036)
Browse files Browse the repository at this point in the history
  • Loading branch information
trexfeathers authored Jul 2, 2024
1 parent 1a73e84 commit d0801aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit d0801aa

Please sign in to comment.