File tree 3 files changed +11
-1
lines changed 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -80,3 +80,5 @@ test_script:
80
80
- ps : .\install_python.ps1
81
81
- set PYTHON=C:\Python37-x64
82
82
- ps : .\install_python.ps1
83
+ - set PYTHON=C:\Python38-x64
84
+ - ps : .\install_python.ps1
Original file line number Diff line number Diff line change 1
1
downloads /
2
2
* .orig
3
+ * .swp
Original file line number Diff line number Diff line change @@ -21,7 +21,14 @@ if ($env:PYTHON -eq "C:\Python${req_nodot}-x64") {
21
21
$py_url = " https://www.python.org/ftp/python"
22
22
Write-Host " Installing Python ${req_ver}$exe_suffix ..." - ForegroundColor Cyan
23
23
$exePath = " $env: TEMP \python-${req_ver}${exe_suffix} .exe"
24
- $downloadFile = " $py_url /${req_ver} /python-${req_ver}${exe_suffix} .exe"
24
+
25
+ if ($req_nodot -eq " 38" ) {
26
+ $downloadFile = " $py_url /${req_ver} /python-${req_ver} rc1${exe_suffix} .exe"
27
+ }
28
+ else {
29
+ $downloadFile = " $py_url /${req_ver} /python-${req_ver}${exe_suffix} .exe"
30
+ }
31
+
25
32
Write-Host " Downloading $downloadFile ..."
26
33
(New-Object Net.WebClient).DownloadFile($downloadFile , $exePath )
27
34
Write-Host " Installing..."
You can’t perform that action at this time.
0 commit comments