Commit 9393ed40 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Don't require SSL on Py2.5

parent f749bb4c
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -25,8 +25,10 @@ if test "$py_version" = "2.5"; then
  hash -r
  which easy_install
  easy_install 'pip==1.3.1'
  PIP="pip --insecure"
else
  curl -k https://raw.github.com/pypa/pip/1.4/contrib/get-pip.py | python -
  PIP="pip"
fi

# Not sure why the hell pip ends up there, but in Py3.3, it sometimes does.
@@ -34,15 +36,15 @@ export PATH=`pwd`/.env/local/bin:$PATH

if test "$EXTRA_INSTALL" != ""; then
  for i in $EXTRA_INSTALL ; do
    pip install $i
    $PIP install $i
  done
fi

if test -f requirements.txt; then
  pip install -r requirements.txt
  $PIP install -r requirements.txt
fi

pip install pytest
$PIP install pytest

${py_exe} setup.py install