From e43bd093835c8e9f15191db2eaa420c694800e4f Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Tue, 26 Feb 2019 22:09:00 -0700 Subject: actually install python across all platforms --- .travis.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 0a6541d..c928edb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,18 @@ -language: python +language: generic os: - linux - osx - windows -python: '3.6' +addons: + homebrew: + packages: + - python +before_install: + - sh scripts/setup_${TRAVIS_OS_NAME}.sh +install: + - pip3 install -r requirements.txt || pip install -r requirements.txt after_success: - - python setup.py build + - python3 setup.py build || python setup.py build - ls build deploy: skip_cleanup: true -- cgit v1.2.3