You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .appveyor.yml
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,31 @@ environment:
11
11
- python: 38
12
12
- python: 38-x64
13
13
- python: 39
14
-
image: Visual Studio 2019
14
+
python_version: 3.9.0
15
15
- python: 39-x64
16
-
image: Visual Studio 2019
16
+
python_version: 3.9.0
17
17
18
18
install:
19
+
- ps: |
20
+
# from https://github.com/appveyor/build-images/blob/27bde614bc60d7ef7a8bc46182f4d7582fa11b56/scripts/Windows/install_python.ps1#L88-L108
21
+
function InstallPythonEXE($targetPath, $version) {
22
+
$urlPlatform = ""
23
+
if ($targetPath -match '-x64$') {
24
+
$urlPlatform = "-amd64"
25
+
}
26
+
Write-Host "Installing Python $version$urlPlatform to $($targetPath)..." -ForegroundColor Cyan
0 commit comments