summaryrefslogtreecommitdiff
path: root/sandbox
diff options
context:
space:
mode:
authorgrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2021-04-17 09:54:18 +0000
committergrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2021-04-17 09:54:18 +0000
commit825920490b80a34fd5f074ed49d4a52996a70dff (patch)
treed7ed651160e37d8a2a093a16752ccd99f8a64c28 /sandbox
parent03e4a2daea66f2174c9a8d964ae746f0c025a0eb (diff)
downloaddocutils-825920490b80a34fd5f074ed49d4a52996a70dff.tar.gz
install wheel into each venv
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8695 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'sandbox')
-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