Currently, all NUMPY_VERSION=1.10.4 tests fail on Travis.
The problem is that conda installs a too old scipy version:
scipy: 0.19.1-py35_blas_openblas_202 conda-forge [blas_openblas]
even though we require scipy>=1.0.
Later, when $BUILD_CMD is evaluated, the build notices the missing requirement
Collecting scipy>=1.0.0 (from MDAnalysis==0.19.3.dev0)
And a little further below:
ERROR: scipy 1.3.0 has requirement numpy>=1.13.3, but you'll have numpy 1.10.4 which is incompatible.
As expected, the tests then fail due to numpy/scipy incompatibilities.