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 '