We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e10464 commit 23d3a09Copy full SHA for 23d3a09
appveyor.yml
@@ -137,6 +137,16 @@ environment:
137
matrix:
138
fast_finish: true
139
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
+
150
build_script:
151
- cmd: |
152
"%PYTHON%/python.exe" -m pip install --upgrade pip
0 commit comments