Install Python 3.8 on Appveyor

This commit is contained in:
Marius Gedminas 2019-10-22 19:03:35 +03:00
parent a3261fe4b1
commit 4695989f66
1 changed files with 6 additions and 1 deletions

View File

@ -8,12 +8,17 @@ environment:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
## - PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python38"
init:
- "echo %PYTHON%"
install:
- ps: |
if (-not (Test-Path $env:PYTHON)) {
curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1
.\install_python.ps1
}
- ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" }
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version