Skip to content

Commit ea7c416

Browse files
committed
download Python 3.9 manually
1 parent 285348b commit ea7c416

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

appveyor.yml

+10
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,16 @@ environment:
137137
matrix:
138138
fast_finish: true
139139

140+
install:
141+
- ps: |
142+
if (-not (Test-Path $env:PYTHON)) {
143+
curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/devel/install_python.ps1
144+
.\install_python.ps1
145+
}
146+
- ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" }
147+
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
148+
- python --version
149+
140150
build_script:
141151
- cmd: |
142152
"%PYTHON%/python.exe" -m pip install --upgrade pip

0 commit comments

Comments
 (0)