From 1a2f0a3eaa4ef2ba46ffc8c0a9b734a5d8623c34 Mon Sep 17 00:00:00 2001 From: AlexWells Date: Tue, 14 Dec 2021 09:06:02 +0000 Subject: [PATCH] Pin cibuildwheel to 2.2.2 This appears to resolve issue regarding Windows symlinks not copying. See https://github.com/pypa/cibuildwheel/issues/962 --- .github/workflows/code.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 5631857e..36add2c7 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -60,7 +60,8 @@ jobs: python-version: "3.7" - name: Install Python Dependencies - run: pip install build cibuildwheel + # Pin cibuildwheel due to https://github.com/pypa/cibuildwheel/issues/962 + run: pip install build cibuildwheel==2.2.2 - name: Build Sdist if: matrix.sdist