From 53b4ea5125fd23a01484e31c9202a40f5d9de6e2 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 10 Sep 2017 22:02:36 +0100 Subject: [PATCH] Maybe bitrise will run the macos builds! --- cibuildwheel/__main__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index 46b87cf8..1a157495 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -59,6 +59,8 @@ def main(): platform = 'macos' elif 'APPVEYOR' in os.environ: platform = 'windows' + elif 'BITRISE_BUILD_NUMBER' in os.environ: + platform = 'macos' else: print('cibuildwheel: Unable to detect platform. cibuildwheel should run on your CI server, ' 'Travis CI and Appveyor are supported. You can run on your development '