@@ -20,7 +20,8 @@ virtualenv testenv4
20
20
source testenv1/bin/activate
21
21
pip uninstall -y setuptools \
22
22
&& rm testenv1/lib/python-wheels/setuptools* \
23
- && pip install -U setuptools==20.10.1
23
+ && pip install -U setuptools==20.10.1 \
24
+ && pip install --force-reinstall -U pip==1.5.6
24
25
make install-dependencies
25
26
make test
26
27
pip uninstall -y ${package} || true ; pip uninstall -y ${package} || true ; make install
@@ -36,7 +37,8 @@ cd testenv2
36
37
source bin/activate
37
38
pip uninstall -y setuptools \
38
39
&& rm lib/python-wheels/setuptools* \
39
- && pip install -U setuptools==20.10.1
40
+ && pip install -U setuptools==20.10.1 \
41
+ && pip install --force-reinstall -U pip==1.5.6
40
42
pip install -e git+${repo} @${HEAD} # egg=${package}
41
43
cd src/${package}
42
44
make install-dependencies
@@ -54,7 +56,8 @@ cd ../testenv3/
54
56
source bin/activate
55
57
pip uninstall -y setuptools \
56
58
&& rm lib/python-wheels/setuptools* \
57
- && pip install -U setuptools==20.10.1
59
+ && pip install -U setuptools==20.10.1 \
60
+ && pip install --force-reinstall -U pip==1.5.6
58
61
pip install ${package} * tar.gz
59
62
pip install pytest
60
63
tar xzf ${package} * tar.gz
0 commit comments