Install Python 3.8 on Appveyor
This commit is contained in:
parent
a3261fe4b1
commit
4695989f66
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue