GitHub Actions: update note about Windows again

This commit is contained in:
Sajith Sasidharan 2021-04-26 17:06:34 -04:00
parent 1531bea63f
commit 65398a2d63

View File

@ -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