Skip to content

Commit

Permalink
Travis: fix osx and remove python 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Unrud committed Nov 5, 2018
1 parent 5603c55 commit d119942
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ sudo: false

matrix:
include:
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
Expand All @@ -15,7 +13,12 @@ matrix:
language: generic

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3 || brew upgrade python3; fi
- |
if [ "${TRAVIS_OS_NAME}" == osx ]; then
rm '/usr/local/include/c++'
brew install python3 ||
brew upgrade python3
fi
- pip3 install --upgrade six

install:
Expand Down

0 comments on commit d119942

Please sign in to comment.