Build Python 3.4

This commit is contained in:
Donald Stufft 2014-01-13 14:27:11 -05:00
parent a69bcd1819
commit 7dcced8be7
2 changed files with 13 additions and 0 deletions

View File

@ -6,6 +6,7 @@ env:
- TOXENV=py27
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
install:
@ -14,6 +15,7 @@ install:
# This is required because we need to get rid of the Travis installed PyPy
# or it'll take precedence over the PPA installed one.
- "if [[ $TOXENV == 'pypy' ]]; then sudo rm -rf /usr/local/pypy/bin; fi"
- "if [[ $TOXENV == 'py34' ]]; then .travis/py34.sh; fi"
- sudo apt-get install subversion bzr mercurial
- echo -e "[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt" >> ~/.hgrc
- git config --global user.email "python-virtualenv@googlegroups.com"

11
.travis/py34.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# Get the Source Code
cd ..
hg clone http://hg.python.org/cpython
# Build Python
cd cpython
./configure
make -j8
sudo make install