summaryrefslogtreecommitdiff
path: root/sandbox/infrastructure/crosstest/mkvenvs.sh
blob: 6a48b59d3feef505caee9679793400c7ac3a2d4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# make virtual environments

# python2.7 -m virtualenv py2.7
for I in 5 6 7 8 9 10 ; do
    VDIR=py3.$I
    python3.$I -m venv $VDIR
    cd $VDIR
    . bin/activate
    python -m pip install setuptools wheel
    deactivate
    cd ..
done