@@ -7,6 +7,7 @@ package=schema-salad
7
7
module=schema_salad
8
8
repo=https://github.com/common-workflow-language/schema_salad.git
9
9
run_tests=" py.test --pyarg ${module} "
10
+ pipver=6.0 # minimum required version of pip
10
11
11
12
rm -Rf testenv? || /bin/true
12
13
@@ -19,7 +20,7 @@ virtualenv testenv4
19
20
# First we test the head
20
21
source testenv1/bin/activate
21
22
rm testenv1/lib/python-wheels/setuptools* \
22
- && pip install --force-reinstall -U pip==1.5.6 \
23
+ && pip install --force-reinstall -U pip==${pipver} \
23
24
&& pip install setuptools==20.10.1
24
25
make install-dependencies
25
26
make test
@@ -35,7 +36,7 @@ pushd testenv1/not-${module}; ../bin/${run_tests}; popd
35
36
cd testenv2
36
37
source bin/activate
37
38
rm lib/python-wheels/setuptools* \
38
- && pip install --force-reinstall -U pip==1.5.6 \
39
+ && pip install --force-reinstall -U pip==${pipver} \
39
40
&& pip install setuptools==20.10.1
40
41
pip install -e git+${repo} @${HEAD} # egg=${package}
41
42
cd src/${package}
@@ -53,7 +54,7 @@ bin/${run_tests}
53
54
cd ../testenv3/
54
55
source bin/activate
55
56
rm lib/python-wheels/setuptools* \
56
- && pip install --force-reinstall -U pip==1.5.6 \
57
+ && pip install --force-reinstall -U pip==${pipver} \
57
58
&& pip install setuptools==20.10.1
58
59
pip install ${package} * tar.gz
59
60
pip install pytest
0 commit comments