diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-12 14:17:08 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-12 14:17:08 -0800 |
commit | 9c37e40e309964b4d8db9858a3bc9bedac1c8392 (patch) | |
tree | d034eb2b2fe0776ef34c64b347f525eb110b63e5 | |
parent | 87417d9f04e1c0e7611d33254f69138c8ffcde40 (diff) | |
download | numpy-9c37e40e309964b4d8db9858a3bc9bedac1c8392.tar.gz |
MAINT: remove VC 9.0 from CI
* given the recent removal of Python 2.7
support / testing, we longer need the step
to install VC 9.0 in Azure Windows CI
-rw-r--r-- | azure-pipelines.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a5af5ee35..59ea06c7c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -131,14 +131,6 @@ jobs: versionSpec: $(PYTHON_VERSION) addToPath: true architecture: $(PYTHON_ARCH) - # as noted by numba project, currently need - # specific VC install for Python 2.7 - - powershell: | - $wc = New-Object net.webclient - $wc.Downloadfile("https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi", "VCForPython27.msi") - Start-Process "VCForPython27.msi" /qn -Wait - displayName: 'Install VC 9.0' - condition: eq(variables['PYTHON_VERSION'], '2.7') - script: python -m pip install --upgrade pip setuptools wheel displayName: 'Install tools' - powershell: | |