File tree 6 files changed +53
-8
lines changed
6 files changed +53
-8
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,13 @@ matrix:
97
97
- NUMPY_BUILD=master
98
98
- BUILD_TYPE=pydata
99
99
- PANDAS_TESTING_MODE="deprecate"
100
+ - python : 3.5
101
+ env :
102
+ - JOB_NAME : " 35_numpy_dev"
103
+ - JOB_TAG=_NUMPY_DEV
104
+ - NOSE_ARGS="not slow and not network and not disabled"
105
+ - BUILD_TYPE=conda
106
+ - PANDAS_TESTING_MODE="deprecate"
100
107
allow_failures :
101
108
- python : 2.7
102
109
env :
@@ -137,6 +144,13 @@ matrix:
137
144
- FULL_DEPS=true
138
145
- BUILD_TYPE=pydata
139
146
- BUILD_TEST=true
147
+ - python : 3.5
148
+ env :
149
+ - JOB_NAME : " 35_numpy_dev"
150
+ - JOB_TAG=_NUMPY_DEV
151
+ - NOSE_ARGS="not slow and not network and not disabled"
152
+ - BUILD_TYPE=conda
153
+ - PANDAS_TESTING_MODE="deprecate"
140
154
141
155
before_install :
142
156
- echo "before_install"
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ source activate pandas
4
+
5
+ echo " install numpy master wheel"
6
+
7
+ # remove the system installed numpy
8
+ pip uninstall numpy -y
9
+
10
+ # we need these for numpy
11
+
12
+ # these wheels don't play nice with the conda libgfortran / openblas
13
+ # time conda install -n pandas libgfortran openblas || exit 1
14
+
15
+ time sudo apt-get $APT_ARGS install libatlas-base-dev gfortran
16
+
17
+ # install numpy wheel from master
18
+ pip install --pre --upgrade --no-index --timeout=60 --trusted-host travis-dev-wheels.scipy.org -f http://travis-dev-wheels.scipy.org/ numpy
19
+
20
+ true
Original file line number Diff line number Diff line change @@ -81,6 +81,14 @@ conda info -a || exit 1
81
81
# build deps
82
82
REQ=" ci/requirements-${TRAVIS_PYTHON_VERSION}${JOB_TAG} .build"
83
83
time conda create -n pandas python=$TRAVIS_PYTHON_VERSION nose flake8 || exit 1
84
+
85
+ # may have additional installation instructions for this build
86
+ INSTALL=" ci/install-${TRAVIS_PYTHON_VERSION}${JOB_TAG} .sh"
87
+ if [ -e ${INSTALL} ]; then
88
+ time bash $INSTALL || exit 1
89
+ fi
90
+
91
+ # install deps
84
92
time conda install -n pandas --file=${REQ} || exit 1
85
93
86
94
source activate pandas
Original file line number Diff line number Diff line change @@ -13,12 +13,10 @@ html5lib
13
13
lxml
14
14
matplotlib
15
15
jinja2
16
+ bottleneck
17
+ sqlalchemy
18
+ pymysql
19
+ psycopg2
16
20
17
- # currently causing some warnings
18
- #sqlalchemy
19
- #pymysql
20
- #psycopg2
21
-
22
- # not available from conda
23
- #beautiful-soup
24
- #bottleneck
21
+ # incompat with conda ATM
22
+ # beautiful-soup
Original file line number Diff line number Diff line change
1
+ python-dateutil
2
+ pytz
3
+ cython
Original file line number Diff line number Diff line change
1
+ python-dateutil
2
+ pytz
You can’t perform that action at this time.
0 commit comments