fix: drop Python 2.7 on Windows using 2008 compiler

This commit is contained in:
Henry Schreiner
2021-04-25 00:55:16 -04:00
committed by Henry Schreiner
parent f27943608b
commit 22d473acc0
12 changed files with 21 additions and 57 deletions
-2
View File
@@ -31,8 +31,6 @@ jobs:
pool: {vmImage: 'vs2017-win2016'}
steps:
- task: UsePythonVersion@0
- script: choco upgrade vcpython27 -y
displayName: Install Visual C++ for Python 2.7
- bash: |
set -o errexit
python -m pip install --upgrade pip
-4
View File
@@ -26,10 +26,6 @@ jobs:
with:
python-version: '3.8'
- name: Install Visual C++ for Python 2.7
if: runner.os == 'Windows'
run: choco upgrade vcpython27 -y
- name: Build wheels
uses: joerick/cibuildwheel@v1.10.0
-4
View File
@@ -13,10 +13,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Visual C++ for Python 2.7
if: runner.os == 'Windows'
run: choco upgrade vcpython27 -y
- name: Build wheels
uses: joerick/cibuildwheel@v1.10.0
# to supply options, put them in 'env', like:
-4
View File
@@ -18,10 +18,6 @@ jobs:
with:
python-version: '3.7'
- name: Install Visual C++ for Python 2.7
if: runner.os == 'Windows'
run: choco upgrade vcpython27 -y
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1