aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index bd08740a..58d7404d 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -56,6 +56,11 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
pyenv global 3.3.5
pip install virtualenv
;;
+ py34)
+ pyenv install 3.4.0
+ pyenv global 3.4.0
+ pip install virtualenv
+ ;;
docs)
curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
sudo python get-pip.py
@@ -78,6 +83,9 @@ else
py33)
sudo apt-get install python3.3 python3.3-dev
;;
+ py34)
+ sudo apt-get install python3.4 python3.4-dev
+ ;;
py3pep8)
sudo apt-get install python3.3 python3.3-dev
;;