Skip to content

Commit

Permalink
Fix for missing table in option parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Aug 30, 2023
1 parent 81ef5fa commit 5311f88
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cibuildwheel/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,11 @@ def build_options(self, identifier: str | None) -> BuildOptions:
test_extras = self.reader.get("test-extras", sep=",")
build_verbosity_str = self.reader.get("build-verbosity")

build_frontend_str = self.reader.get("build-frontend", env_plat=False)
build_frontend_str = self.reader.get(
"build-frontend",
env_plat=False,
table={"item": "{k}:{v}", "sep": "; ", "quote": shlex.quote},
)
build_frontend: BuildFrontendConfig | None
if not build_frontend_str or build_frontend_str == "default":
build_frontend = None
Expand Down

0 comments on commit 5311f88

Please sign in to comment.