From 940b48f7e6b04c33729475e92ca5c0c1388b7cc5 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 23 Apr 2021 10:33:05 +0100 Subject: [PATCH] add note about 3.6+ --- docs/options.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/options.md b/docs/options.md index 464d1c85..86f20ce0 100644 --- a/docs/options.md +++ b/docs/options.md @@ -437,14 +437,14 @@ Platform-specific variants also available:
**If that's an issue for you, check out [delvewheel]** - a new package that aims to do the same as `auditwheel` or `delocate` for Windows. - Because delvewheel is still relatively early-stage, cibuildwheel does not yet run it by default. However, we'd recommend giving it a try! See the examples below for usage. + Because delvewheel is still relatively early-stage, cibuildwheel does not yet run it by default. However, we'd recommend giving it a try! See the examples below for usage. [Delvewheel]: https://github.com/adang1345/delvewheel #### Examples ```yaml -# use delvewheel on windows +# use delvewheel on windows (only works on Python 3.6+) CIBW_BEFORE_BUILD_WINDOWS: "pip install delvewheel" CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"