aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2016-09-12 16:03:09 +0200
committerAlex Gaynor <alex.gaynor@gmail.com>2016-09-12 10:03:09 -0400
commitb3bf838293db3ff8351be5b4f586572c0f18b100 (patch)
treee1b97cceabfb027674973dc3cdd1b5ca419e872c /.travis
parent0fa6b39f8e9685942b23ff9a878fe34e771a8c7e (diff)
downloadcryptography-b3bf838293db3ff8351be5b4f586572c0f18b100.tar.gz
cryptography-b3bf838293db3ff8351be5b4f586572c0f18b100.tar.bz2
cryptography-b3bf838293db3ff8351be5b4f586572c0f18b100.zip
Update Python 3s & limit pyenv history cloned (#3145)
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 5c09b258..f77fdda7 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -9,7 +9,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
brew outdated openssl || brew upgrade openssl
# install pyenv
- git clone https://github.com/yyuu/pyenv.git ~/.pyenv
+ git clone --depth 1 https://github.com/yyuu/pyenv.git ~/.pyenv
PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
@@ -24,12 +24,12 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv global 3.3.6
;;
py34)
- pyenv install 3.4.4
- pyenv global 3.4.4
+ pyenv install 3.4.5
+ pyenv global 3.4.5
;;
py35)
- pyenv install 3.5.1
- pyenv global 3.5.1
+ pyenv install 3.5.2
+ pyenv global 3.5.2
;;
pypy*)
pyenv install "pypy-$PYPY_VERSION"