Skip to content

Commit 7d4fef3

Browse files
authored
[MRG] Appveyor version upgrade (scikit-learn#11425)
- run windows tests with the latest version of Python (namely 3.7) - run windows tests with the latest versions of numpy and scipy as published on PyPI.
1 parent 175bedb commit 7d4fef3

File tree

2 files changed

+12
-20
lines changed

2 files changed

+12
-20
lines changed

appveyor.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ environment:
1717
SKLEARN_SKIP_NETWORK_TESTS: 1
1818

1919
matrix:
20-
- PYTHON: "C:\\Python27"
21-
PYTHON_VERSION: "2.7.8"
20+
- PYTHON: "C:\\Python37"
21+
PYTHON_VERSION: "3.7.0"
2222
PYTHON_ARCH: "32"
2323

24-
- PYTHON: "C:\\Python27-x64"
25-
PYTHON_VERSION: "2.7.8"
24+
- PYTHON: "C:\\Python37-x64"
25+
PYTHON_VERSION: "3.7.0"
2626
PYTHON_ARCH: "64"
2727

28-
- PYTHON: "C:\\Python36"
29-
PYTHON_VERSION: "3.6.1"
28+
- PYTHON: "C:\\Python27"
29+
PYTHON_VERSION: "2.7.8"
3030
PYTHON_ARCH: "32"
3131

32-
- PYTHON: "C:\\Python36-x64"
33-
PYTHON_VERSION: "3.6.1"
32+
- PYTHON: "C:\\Python27-x64"
33+
PYTHON_VERSION: "2.7.8"
3434
PYTHON_ARCH: "64"
3535

3636

build_tools/appveyor/requirements.txt

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
# Fetch numpy and scipy wheels from the sklearn rackspace wheelhouse.
2-
# Those wheels were collected from https://www.lfd.uci.edu/~gohlke/pythonlibs/
3-
# This is a temporary solution. As soon as numpy and scipy provide official
4-
# wheel for windows we ca delete this --find-links line.
5-
--find-links http://28daf2247a33ed269873-7b1aad3fab3cc330e1fd9d109892382a.r6.cf2.rackcdn.com/
6-
7-
# fix the versions of numpy to force the use of numpy and scipy to use the whl
8-
# of the rackspace folder instead of trying to install from more recent
9-
# source tarball published on PyPI
10-
numpy==1.13.0
11-
scipy==0.19.0
12-
cython
1+
numpy
2+
scipy
3+
# Pin Cython to avoid bug with 0.28.x on Python 3.7
4+
cython==0.27.3
135
pytest
146
wheel
157
wheelhouse_uploader

0 commit comments

Comments
 (0)