Skip to content

Commit e24ab24

Browse files
committed
BLD: update appveyor build to use numpy 1.11 for 3.5 build
BLD: correctly install tools.tests.data closes #13472
1 parent 9d33c7b commit e24ab24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

appveyor.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ environment:
3232
PYTHON_VERSION: "3.5"
3333
PYTHON_ARCH: "64"
3434
CONDA_PY: "35"
35-
CONDA_NPY: "110"
35+
CONDA_NPY: "111"
36+
3637

3738
# We always use a 64-bit machine, but can build x86 distributions
3839
# with the PYTHON_ARCH variable (which is used by CMD_IN_ENV).

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,6 @@ def pxd(name):
591591
'tests/data/*.xlsx',
592592
'tests/data/*.xlsm',
593593
'tests/data/*.table',
594-
'tests/tools/data/*.csv',
595594
'tests/parser/data/*.csv',
596595
'tests/parser/data/*.gz',
597596
'tests/parser/data/*.bz2',
@@ -602,7 +601,7 @@ def pxd(name):
602601
'tests/data/*.html',
603602
'tests/data/html_encoding/*.html',
604603
'tests/json/data/*.json'],
605-
'pandas.tools': ['tests/*.csv'],
604+
'pandas.tools': ['tests/data/*.csv'],
606605
'pandas.tests': ['data/*.pickle',
607606
'data/*.csv'],
608607
'pandas.tests.formats': ['data/*.csv'],

0 commit comments

Comments
 (0)