8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d01354e commit fcacdccCopy full SHA for fcacdcc
.travis-make-py24-virtualenv.sh
@@ -15,4 +15,11 @@ EOF
15
./configure --prefix=$PWD/install
16
make
17
make install
18
-virtualenv -p install/bin/python2.4 --distribute $VIRTENV
+# This is the last version of virtualenv to support python 2.4:
19
+curl -O https://raw.github.com/pypa/virtualenv/1.7.2/virtualenv.py
20
+# And this is the last version of pip to support python 2.4. If
21
+# there's a file matching "^pip-.*(zip|tar.gz|tar.bz2|tgz|tbz)$" in
22
+# the current directory then virtualenv will take that as the pip
23
+# source distribution to install
24
+curl -O http://pypi.python.org/packages/source/p/pip/pip-1.1.tar.gz
25
+install/bin/python2.4 ./virtualenv.py --distribute $VIRTENV
0 commit comments