summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2017-11-05 23:52:15 +0100
committerThomas Waldmann <tw@waldmann-edv.de>2017-11-05 23:52:15 +0100
commitce7936b608bcc8199d4a6cee7ef1e3c950ff4a03 (patch)
tree6c92711e3997f3700e6b07265e54a1d3b2a13f11
parent3097c059ffbe8cffcad4b3b2ffdd56b27de321b0 (diff)
vagrant: use https pypi url for wheezy1.1.2
http url stopped working
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 2eb9a462d..10f100f62 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -31,7 +31,7 @@ def packages_debianoid(user)
# this way it works on older dists (like ubuntu 12.04) also:
# for python 3.2 on ubuntu 12.04 we need pip<8 and virtualenv<14 as
# newer versions are not compatible with py 3.2 any more.
- easy_install3 'pip<8.0'
+ easy_install3 -i https://pypi.python.org/simple/ 'pip<8.0'
pip3 install 'virtualenv<14.0'
EOF
end