From 80d17a0e203ebc8cac8da3f8f2d5d625e9541d6c Mon Sep 17 00:00:00 2001 From: "Matthias C. M. Troffaes" Date: Wed, 4 Sep 2024 10:53:57 +0100 Subject: [PATCH] Try force pip to use binary Cython. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ed4e5b..5846370 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -148,7 +148,7 @@ jobs: dir cddlib/lib-src/ if ("${{ matrix.architecture }}" -eq "x86") { $platform = "Win32" } else { $platform = "x64" } mkdir dist -Force - pip wheel -w dist --global-option="build_ext" --global-option="-I$platform/Release/" --global-option="-L$platform/Release/" . + pip wheel -w dist --global-option="build_ext" --global-option="-I$platform/Release/" --global-option="-L$platform/Release/" --only-binary Cython . - name: Check files run: twine check dist/* - name: Upload wheel