From bf439d34b7e55e137b099a427f80e63ef2158a9b Mon Sep 17 00:00:00 2001 From: squidfunk Date: Fri, 24 Feb 2017 19:36:44 +0100 Subject: [PATCH] Install wheel as a dependency for build --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a84445815..a7f554a9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -68,11 +68,14 @@ matrix: - docker # If we're not on a release branch, exit early and indicate success - #before_install: echo "$TRAVIS_BRANCH" | grep -qE "^[0-9.]+$" && exit 0 + #before_install: echo "$TRAVIS_BRANCH" | grep -qE "^[0-9.]+$" && exit 0; # Don't install anything, as we're only using the pre-built files install: ":" + # Install wheel for build + before_script: pip install wheel + # Perform build script: - python setup.py build sdist bdist_wheel --universal