Make sure the pip in the virtualenv is upgraded.

Additionally, list the installed packages after each of the two installation
phases.
This commit is contained in:
John Wiggins
2015-09-01 08:59:15 +02:00
parent 8a5cc800cb
commit 0e46d2cd82
3 changed files with 6 additions and 1 deletions
-1
View File
@@ -36,7 +36,6 @@ python:
- 3.4
before_install:
- pip install -U pip
- source tools/travis_before_install.sh
- which python; python --version
+3
View File
@@ -49,6 +49,7 @@ fi
virtualenv -p python ~/venv
source ~/venv/bin/activate
pip install --upgrade pip
pip install --retries 3 -q wheel flake8 coveralls nose
# on Python 3.2, use matplotlib 1.3.1
@@ -64,6 +65,8 @@ pip install --retries 3 -q $WHEELHOUSE $WHEELS
pip install --retries 3 -q -r requirements.txt
# Show what's installed
pip list
section () {
echo -en "travis_fold:start:$1\r"
+3
View File
@@ -47,6 +47,9 @@ if [[ $PY == 2.* ]]; then
pip install --retries 3 -q pyamg
fi
# Show what's installed
pip list
section_end "Install.optional.dependencies"