File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,6 @@ conda config --set ssl_verify false || exit 1
50
50
conda config --set quiet true --set always_yes true --set changeps1 false || exit 1
51
51
conda update -q conda
52
52
53
- if [ " $CONDA_BUILD_TEST " ]; then
54
- echo
55
- echo " [installing conda-build]"
56
- conda install conda-build
57
- fi
58
-
59
53
echo
60
54
echo " [add channels]"
61
55
conda config --remove channels defaults || exit 1
@@ -179,15 +173,15 @@ if [ "$PIP_BUILD_TEST" ]; then
179
173
180
174
elif [ " $CONDA_BUILD_TEST " ]; then
181
175
176
+ echo " [installing conda-build]"
177
+ conda install conda-build
178
+
182
179
# build & install testing
183
- source deactivate
184
180
echo " [building conda recipe]"
185
- artifact = $( conda build ./conda.recipe --numpy 1.11 --python 3.5 -q --output)
186
- conda build ./conda.recipe --numpy 1.13 --python 3.5 -q --no-test
181
+ conda build ./conda.recipe --numpy 1.13 --python 3.5 -q
187
182
188
183
echo " [installing]"
189
- source activate pandas
190
- conda install " $artifact " --force
184
+ conda install $( conda build ./conda.recipe --numpy 1.13 --python 3.5 --output)
191
185
192
186
else
193
187
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ requirements:
14
14
build :
15
15
- python
16
16
- cython
17
- - numpy
17
+ - {{ pin_compatible(' numpy') }}
18
18
- setuptools >=3.3
19
19
20
20
run :
You can’t perform that action at this time.
0 commit comments