summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsandbox/infrastructure/crosstest/mkvenvs.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/sandbox/infrastructure/crosstest/mkvenvs.sh b/sandbox/infrastructure/crosstest/mkvenvs.sh
index 043c5b0ee..6a48b59d3 100755
--- a/sandbox/infrastructure/crosstest/mkvenvs.sh
+++ b/sandbox/infrastructure/crosstest/mkvenvs.sh
@@ -4,6 +4,12 @@
# python2.7 -m virtualenv py2.7
for I in 5 6 7 8 9 10 ; do
- python3.$I -m venv py3.$I
+ VDIR=py3.$I
+ python3.$I -m venv $VDIR
+ cd $VDIR
+ . bin/activate
+ python -m pip install setuptools wheel
+ deactivate
+ cd ..
done