summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2018-09-04 10:19:44 -0700
committerGitHub <noreply@github.com>2018-09-04 10:19:44 -0700
commite2a54f71bdcaf73b6b55cf553d62ab87c2ef6c68 (patch)
tree0f0f0b34be41cf430314364587eb6c1c3317ccce
parentf0a1bd8baec5f9ae61afd1c374abed78e995550b (diff)
parent58b5cd7fe2417abd05a44d8acbe4a3ee88ab6f4b (diff)
downloadsimplejson-e2a54f71bdcaf73b6b55cf553d62ab87c2ef6c68.tar.gz
Merge pull request #233 from simplejson/travis-py37
Add Python 3.7 to Travis
-rw-r--r--.travis.yml12
-rwxr-xr-x.travis/install.sh2
2 files changed, 12 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index cfd72b3..edf101c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,6 +31,13 @@ matrix:
services:
- docker
python: '3.6'
+ env: BUILD_WHEEL=true
+ - os: linux
+ dist: xenial
+ sudo: required
+ services:
+ - docker
+ python: '3.7'
env: BUILD_SDIST=true BUILD_WHEEL=true
- os: linux
sudo: false
@@ -43,7 +50,10 @@ matrix:
env: PYENV_VERSION=2.7.12
- os: osx
language: objective-c
- env: PYENV_VERSION=3.5.2
+ env: PYENV_VERSION=3.5.5
+ - os: osx
+ language: objective-c
+ env: PYENV_VERSION=3.6.5
install:
- "./.travis/install.sh"
script:
diff --git a/.travis/install.sh b/.travis/install.sh
index cf056c9..36d2579 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -8,7 +8,7 @@ if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
if [ -e "$HOME/.pyenv-simplejson" ]; then
rm -rf ~/.pyenv-simplejson
fi
- git clone https://github.com/yyuu/pyenv.git ~/.pyenv-simplejson
+ git clone https://github.com/pyenv/pyenv.git ~/.pyenv-simplejson
else
(cd ~/.pyenv-simplejson; git pull)
fi