From 3d195860b367a3ffc0a3017aa02ec97d582fba3e Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Fri, 20 Nov 2015 08:41:34 -0800 Subject: [PATCH] Add wheels to Travis deploy step. We use `universal = 1` in `setup.cfg` since our codebase works without change in both Python 2 and Python 3. --- .travis.yml | 1 + setup.cfg | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index cb75b751908d..e022e455c039 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,3 +31,4 @@ deploy: repo: GoogleCloudPlatform/gcloud-python # until this is fixed: https://github.com/travis-ci/travis-ci/issues/1675 all_branches: true + distributions: "sdist bdist_wheel" diff --git a/setup.cfg b/setup.cfg index 4063f7c1db5a..556219a2942f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,5 @@ [nosetests] ignore-files = run_system_test\.py + +[bdist_wheel] +universal = 1