File tree 1 file changed +6
-5
lines changed
.continuous-integration/travis
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /bin/bash -x
2
2
3
3
# CONDA
4
4
conda create --yes -n test -c astropy-ci-extras python=$PYTHON_VERSION pip
17
17
exit # no more dependencies needed
18
18
fi
19
19
20
+ # CORE DEPENDENCIES
21
+ $CONDA_INSTALL pytest Cython jinja2 psutil
22
+
20
23
# NUMPY
21
24
if [[ $NUMPY_VERSION == dev ]]
22
25
then
23
- pip install git+http://github.com/numpy/numpy.git
26
+ pip install git+http://github.com/numpy/numpy.git
27
+ exit # exit to make sure we don't end up accidentally install numpy with conda
24
28
else
25
29
conda install --yes numpy=$NUMPY_VERSION
26
30
fi
29
33
# versions are always explicitly specified.
30
34
export CONDA_INSTALL=" conda install --yes python=$PYTHON_VERSION numpy=$NUMPY_VERSION "
31
35
32
- # CORE DEPENDENCIES
33
- $CONDA_INSTALL pytest Cython jinja2 psutil
34
-
35
36
# OPTIONAL DEPENDENCIES
36
37
if $OPTIONAL_DEPS
37
38
then
You can’t perform that action at this time.
0 commit comments