Unverified Commit 2eefef9f authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #161 from radarhere/url

Updated redirected URL
parents ae3e5598 ee917362
......@@ -206,7 +206,7 @@ function install_pip {
# Python 2.6 will fail SSL check
local py_mm=`get_py_mm`
if [ "$py_mm" == "2.6" ]; then
local pip_args="--trusted-host=pypi.python.org"
local pip_args="--trusted-host=pypi.org"
fi
# Travis VMS now install pip for system python by default - force install
# even if installed already.
......
......@@ -32,7 +32,7 @@ if ! [[ "$implementer_version" =~ $requested_version ]]; then
ingest "Wrong python version: ${implementer_version}!=${requested_version}"
fi
if [ "$python_mm" == "2.6" ]; then
expected_pip_args=" --trusted-host=pypi.python.org"
expected_pip_args=" --trusted-host=pypi.org"
fi
if [ -n "$VENV" ]; then # in virtualenv
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment