File tree 2 files changed +14
-1
lines changed
.continuous-integration/travis
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 18
18
fi
19
19
20
20
# NUMPY
21
- conda install --yes numpy=$NUMPY_VERSION
21
+ if [[ $NUMPY_VERSION == dev ]]
22
+ then
23
+ pip install git+http://github.com/numpy/numpy.git
24
+ else
25
+ conda install --yes numpy=$NUMPY_VERSION
26
+ fi
22
27
23
28
# Now set up shortcut to conda install command to make sure the Python and Numpy
24
29
# versions are always explicitly specified.
Original file line number Diff line number Diff line change 19
19
- PYTHON_VERSION=3.4 SETUP_CMD='egg_info'
20
20
21
21
matrix :
22
+
22
23
include :
23
24
25
+ # Try developer version of Numpy
26
+ - os : linux
27
+ env : NUMPY_VERSION=dev SETUP_CMD='test'
28
+
24
29
# Try MacOS X
25
30
- os : osx
26
31
env : PYTHON_VERSION=2.7 SETUP_CMD='test' OPTIONAL_DEPS=true
@@ -61,6 +66,9 @@ matrix:
61
66
- os : linux
62
67
env : PYTHON_VERSION=2.7 MAIN_CMD='pep8 astropy --count' SETUP_CMD=''
63
68
69
+ allow_failures :
70
+ - env : NUMPY_VERSION=dev SETUP_CMD='test'
71
+
64
72
install :
65
73
- source .continuous-integration/travis/setup_environment_$TRAVIS_OS_NAME.sh
66
74
You can’t perform that action at this time.
0 commit comments