Skip to content

Commit

Permalink
Use Python 3.5 on AppVeyor (#495)
Browse files Browse the repository at this point in the history
Also use the wheels on PyPI rather than on rackspace.
  • Loading branch information
lesteve committed Feb 14, 2017
1 parent 729c2d6 commit a5e0921
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Expand Up @@ -8,8 +8,8 @@ environment:
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"

install:
Expand All @@ -19,7 +19,7 @@ install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

# Install the build and runtime dependencies of the project.
- "pip install --trusted-host 28daf2247a33ed269873-7b1aad3fab3cc330e1fd9d109892382a.r6.cf2.rackcdn.com -r appveyor/requirements.txt"
- "pip install -r appveyor/requirements.txt"
- "python setup.py bdist_wheel"
- ps: "ls dist"

Expand Down
2 changes: 1 addition & 1 deletion appveyor/install.ps1
Expand Up @@ -96,7 +96,7 @@ function InstallPip ($python_home) {

function DownloadMiniconda ($python_version, $platform_suffix) {
$webclient = New-Object System.Net.WebClient
if ($python_version -eq "3.4") {
if ($python_version -eq "3.5") {
$filename = "Miniconda3-3.5.5-Windows-" + $platform_suffix + ".exe"
} else {
$filename = "Miniconda-3.5.5-Windows-" + $platform_suffix + ".exe"
Expand Down
5 changes: 1 addition & 4 deletions appveyor/requirements.txt
@@ -1,6 +1,3 @@
--find-links http://28daf2247a33ed269873-7b1aad3fab3cc330e1fd9d109892382a.r6.cf2.rackcdn.com/
# force numpy version to use the wheel hosted on rackspace instead of
# tarball from PyPI
numpy==1.9.2
numpy
wheel
pytest

0 comments on commit a5e0921

Please sign in to comment.