You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/options.md
+9-11
Original file line number
Diff line number
Diff line change
@@ -284,7 +284,11 @@ List of builds to build and skip. Each build has an identifier like `cp38-manyli
284
284
285
285
When both options are specified, both conditions are applied and only builds with a tag that matches `CIBW_BUILD` and does not match `CIBW_SKIP` will be built.
286
286
287
-
When setting the options, you can use shell-style globbing syntax, as per [fnmatch](https://docs.python.org/3/library/fnmatch.html) with the addition of curly bracket syntax `{option1,option2}`, provided by [bracex](https://pypi.org/project/bracex/). All the build identifiers supported by cibuildwheel are shown below:
287
+
When setting the options, you can use shell-style globbing syntax, as per [fnmatch](https://docs.python.org/3/library/fnmatch.html) with the addition of curly bracket syntax `{option1,option2}`, provided by [bracex](https://pypi.org/project/bracex/).
288
+
289
+
Separate multiple selectors with a space, e.g. `cp36-macosx_x86_64 pp*`.
290
+
291
+
All the build identifiers supported by cibuildwheel are shown below:
288
292
289
293
<divclass="build-id-table-marker"></div>
290
294
@@ -361,8 +365,6 @@ See the [cibuildwheel 1 documentation](https://cibuildwheel.pypa.io/en/1.x/) for
361
365
CIBW_SKIP: pp*
362
366
```
363
367
364
-
Separate multiple selectors with a space.
365
-
366
368
!!! tab examples "pyproject.toml"
367
369
368
370
```toml
@@ -473,6 +475,7 @@ The build identifiers for those variants have a `t` suffix in their `python_tag`
473
475
> Change the architectures built on your machine by default.
474
476
475
477
A list of architectures to build.
478
+
Separate multiple architectures with a space.
476
479
477
480
On macOS, this option can be used to [cross-compile](faq.md#cross-compiling)
478
481
between `x86_64`, `universal2` and `arm64`.
@@ -532,8 +535,6 @@ This option can also be set using the [command-line option](#command-line)
532
535
CIBW_ARCHS_LINUX: "auto aarch64"
533
536
```
534
537
535
-
Separate multiple archs with a space.
536
-
537
538
!!! tab examples "pyproject.toml"
538
539
539
540
```toml
@@ -814,8 +815,6 @@ Platform-specific environment variables are also available:<br/>
0 commit comments