aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/install.sh
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-04 17:37:38 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-04 17:37:38 -0800
commit99951455325713e8c487ccedcfefdf4ba4c984b0 (patch)
tree5273af2cfd3f2b9c8bc7f692e4180bdefb02366e /.travis/install.sh
parent5278cd9fe4f3c96adcd77dabcd6eecc7985b9abf (diff)
downloadcryptography-99951455325713e8c487ccedcfefdf4ba4c984b0.tar.gz
cryptography-99951455325713e8c487ccedcfefdf4ba4c984b0.tar.bz2
cryptography-99951455325713e8c487ccedcfefdf4ba4c984b0.zip
Docs need virtualenv as well
Diffstat (limited to '.travis/install.sh')
-rwxr-xr-x.travis/install.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 5b4cc516..7e77fc87 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
;;
+ docs)
+ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
+ sudo python get-pip.py
+ sudo pip install virtualenv
+ ;;
esac
pyenv rehash
else