The .travis.yml file used for this job is not available
Build Config
{
"env": {
"global": [
"VERSION='2.7.10'",
"ALIAS=$VERSION"
]
},
"matrix": {
"include": [
{
"env": "RELEASE=trusty",
"sudo": "required",
"services": "docker"
},
{
"env": "RELEASE=precise",
"sudo": "required"
}
]
},
"script": "./bin/compile",
"install": [
"pushd /opt/pyenv/",
"sudo git checkout master",
"sudo git pull",
"popd"
],
"language": "python",
"after_failure": "cat /tmp/python-build.*.log",
"before_script": [
"export INSTALL_DEST=${INSTALL_DEST:-/opt/python}",
"export LSB_RELEASE=${LSB_RELEASE:-$(lsb_release -rs || echo ${$(sw_vers -productVersion)%*.*})}",
"export OS_NAME=${OS_NAME:-$(lsb_release -is | tr \"A-Z\" \"a-z\" || echo \"osx\")}",
"export ARCH=${ARCH:-$(uname -m)}",
"export PACKAGES=${PACKAGES:-pip numpy nose pytest mock wheel scipy}",
"export PYTHON_COFIGURE_OPTS=\"$CONFIGURE_OPTS --enable-unicode=ucs4\"",
"sudo apt-get update -qq",
"sudo apt-get install -y liblapack-dev gfortran python-scipy"
]
}