Skip to content

Commit

Permalink
Install Python 3.8 on Appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 22, 2019
1 parent a3261fe commit 4695989
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion appveyor.yml
Expand Up @@ -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
Expand Down

0 comments on commit 4695989

Please sign in to comment.