From 31b5d784e6542a6bcac9af9b39d3feacabdba137 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 23 Dec 2016 12:20:36 -0500 Subject: Fixed #3334 -- added Python 3.6 support (#3335) * Fixed #3334 -- added Python 3.6 support * install py36 * empty commit to retrigger travis * this is an impressively dumb typo --- .travis/install.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.travis') diff --git a/.travis/install.sh b/.travis/install.sh index f405ab1c..14c29dfe 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -32,6 +32,10 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then pyenv install 3.5.2 pyenv global 3.5.2 ;; + py36) + pyenv install 3.6.0 + pyenv global 3.6.0 + ;; pypy*) pyenv install "pypy-$PYPY_VERSION" pyenv global "pypy-$PYPY_VERSION" -- cgit v1.2.3