From f43407210a84280bb26f1b348e3b4c54a6ec8f76 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Thu, 31 Dec 2020 15:22:19 +0000 Subject: [PATCH] option ordering --- cibuildwheel/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/util.py b/cibuildwheel/util.py index 3000ace8..a2196b09 100644 --- a/cibuildwheel/util.py +++ b/cibuildwheel/util.py @@ -158,10 +158,10 @@ class Architecture(str, Enum): class BuildOptions(NamedTuple): - architectures: List[Architecture] package_dir: Path output_dir: Path build_selector: BuildSelector + architectures: List[Architecture] environment: ParsedEnvironment before_all: str before_build: Optional[str]