summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2018-07-29 17:46:23 +0200
committerGitHub <noreply@github.com>2018-07-29 17:46:23 +0200
commit3622f885ea66268d895c1fae1af3915f6bb5b619 (patch)
tree21d39ade8b7a06d7c3124e80d9825ded9febb53c
parent5460db3a585b373adb47a79797f3475846bac72f (diff)
parentdaa12e4157718600e6cff4a204af166ff9104eea (diff)
downloadpysendfile-3622f885ea66268d895c1fae1af3915f6bb5b619.tar.gz
Merge pull request #33 from sbraz/travis
Travis: add PyPy{,3}, Python 3.7, fix OSX build
-rwxr-xr-x.ci/travis/install.sh4
-rw-r--r--.travis.yml5
2 files changed, 9 insertions, 0 deletions
diff --git a/.ci/travis/install.sh b/.ci/travis/install.sh
index 0d21032..6d6f874 100755
--- a/.ci/travis/install.sh
+++ b/.ci/travis/install.sh
@@ -36,6 +36,10 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv install 3.4.3
pyenv virtualenv 3.4.3 pysendfile
;;
+ py36)
+ pyenv install 3.6.6
+ pyenv virtualenv 3.6.6 pysendfile
+ ;;
esac
pyenv rehash
pyenv activate pysendfile
diff --git a/.travis.yml b/.travis.yml
index c352cfa..fa154dc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,6 +8,11 @@ matrix:
- python: 3.4
- python: 3.5
- python: 3.6
+ - python: 3.7
+ dist: xenial
+ sudo: true
+ - python: pypy
+ - python: pypy3
# OSX
- language: generic
os: osx