Skip to content
This repository has been archived by the owner on Jul 31, 2018. It is now read-only.

Commit

Permalink
Add dependencies folder. Move wx wheel files here.
Browse files Browse the repository at this point in the history
  • Loading branch information
moden-py committed Sep 29, 2015
1 parent 311f138 commit 51c6411
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ci/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
# Authors: Denis Matiychuk
# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/

$WX_32_URL = "http://www.lfd.uci.edu/~gohlke/pythonlibs/3i673h27/wxPython-3.0.2.0-cp27-none-win32.whl"
$WX_64_URL = "http://www.lfd.uci.edu/~gohlke/pythonlibs/3i673h27/wxPython-3.0.2.0-cp27-none-win_amd64.whl"
$WX_COMMON_URL = "http://www.lfd.uci.edu/~gohlke/pythonlibs/3i673h27/wxPython_common-3.0.2.0-py2-none-any.whl"
$WX_32 = "./deps/wxPython-3.0.2.0-cp27-none-win32.whl"
$WX_64 = "./deps/wxPython-3.0.2.0-cp27-none-win_amd64.whl"
$WX_COMMON = "./deps/wxPython_common-3.0.2.0-py2-none-any.whl"


function InstallWX ($python_version, $architecture, $python_home) {
Write-Host "Installing wxPython" $python_version "for" $architecture "bit architecture to" $python_home
$pip_path = $python_home + "\Scripts\pip.exe"

if ($architecture -eq "32") {
$wx_wheel = $WX_32_URL
$wx_wheel = $WX_32
} else {
$wx_wheel = $WX_64_URL
$wx_wheel = $WX_64
}
$args = "install " + $wx_wheel + " " + $WX_COMMON_URL
$args = "install " + $wx_wheel + " " + $WX_COMMON
Write-Host "Install wheels" $args "by" $pip_path
Start-Process -FilePath $pip_path -ArgumentList $args -Wait -Passthru
}
Expand Down
Binary file added deps/wxPython-3.0.2.0-cp27-none-win32.whl
Binary file not shown.
Binary file added deps/wxPython-3.0.2.0-cp27-none-win_amd64.whl
Binary file not shown.
Binary file added deps/wxPython_common-3.0.2.0-py2-none-any.whl
Binary file not shown.

0 comments on commit 51c6411

Please sign in to comment.