Skip to content

Commit a0c7d1a

Browse files
committed
fix pip
1 parent 9012e2b commit a0c7d1a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

release-test.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ virtualenv testenv4
2020
source testenv1/bin/activate
2121
pip uninstall -y setuptools \
2222
&& 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
2425
make install-dependencies
2526
make test
2627
pip uninstall -y ${package} || true; pip uninstall -y ${package} || true; make install
@@ -36,7 +37,8 @@ cd testenv2
3637
source bin/activate
3738
pip uninstall -y setuptools \
3839
&& 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
4042
pip install -e git+${repo}@${HEAD}#egg=${package}
4143
cd src/${package}
4244
make install-dependencies
@@ -54,7 +56,8 @@ cd ../testenv3/
5456
source bin/activate
5557
pip uninstall -y setuptools \
5658
&& 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
5861
pip install ${package}*tar.gz
5962
pip install pytest
6063
tar xzf ${package}*tar.gz

0 commit comments

Comments
 (0)