aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-17 11:16:32 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-17 11:16:32 -0400
commitf855b2896d2881e9dd3487d1d05b1dc904a672e4 (patch)
treec1e487124dd0d8da2093bfc9c664228101827f5a /.travis
parente1bf0f821add8461e6fcee57fdc6e17280970c2d (diff)
downloadcryptography-f855b2896d2881e9dd3487d1d05b1dc904a672e4.tar.gz
cryptography-f855b2896d2881e9dd3487d1d05b1dc904a672e4.tar.bz2
cryptography-f855b2896d2881e9dd3487d1d05b1dc904a672e4.zip
add python 3.4 to osx and linux builders
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 7e77fc87..74220bff 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -56,6 +56,11 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
pyenv global 3.3.2
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
;;