Browse Source

Upgrade Python on Windows to 2.7.5

Pēteris Ņikiforovs 12 years ago
parent
commit
b6ca71bdb8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      installer.ps1

+ 2 - 2
installer.ps1

@@ -63,8 +63,8 @@ $env:Path += ";C:\Program Files\nodejs"; [Environment]::SetEnvironmentVariable("
 # Python
 # Python
 #
 #
 Write-Host "Installing Python...`n"
 Write-Host "Installing Python...`n"
-$python_installer_file = "python-2.7.4.amd64.msi"
-$python_installer_url = "http://www.python.org/ftp/python/2.7.4/$python_installer_file"
+$python_installer_file = "python-2.7.5.amd64.msi"
+$python_installer_url = "http://www.python.org/ftp/python/2.7.5/$python_installer_file"
 $python_installer_local = "$workdir\$python_installer_file"
 $python_installer_local = "$workdir\$python_installer_file"
 (New-Object System.Net.WebClient).DownloadFile($python_installer_url, $python_installer_local)
 (New-Object System.Net.WebClient).DownloadFile($python_installer_url, $python_installer_local)