From 65398a2d63bea5e70ec65d767a7d9969d204ea82 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Mon, 26 Apr 2021 17:06:34 -0400 Subject: [PATCH] GitHub Actions: update note about Windows again --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2adb22bc8..eeb6bbe5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,8 +43,14 @@ jobs: # We use netifaces, which does not ship a 64-bit wheel for the # Python 2.7 + Windows combination, but it ships a 32-bit wheel. # Since MS has removed vcpython27 compiler downloads from their - # usual site, building a netifaces wheel is not an option - # anymore. So let us just test with 32-bit Python on Windows. + # usual download site, building a netifaces wheel locally is not + # an option anymore. So let us just test with 32-bit Python on + # Windows. + # + # It seems that GitHub Actions' expression syntax is not + # expressive enough to select just the (32-bit Python 2.7, + # Windows) combination, so we'd also be switching to (32-bit + # Python 3.6, Windows). - name: Set up Python ${{ matrix.python-version }} [Windows x86] if: ${{ matrix.os == 'windows-latest' }} uses: actions/setup-python@v1