From f73088da5840f9a382eb949f65cbfeaef901e983 Mon Sep 17 00:00:00 2001 From: Nickolay Shmyrev Date: Tue, 24 May 2022 15:11:05 +0300 Subject: [PATCH] We create universal binary on OSX --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 265b141d..0c690f5c 100644 --- a/python/setup.py +++ b/python/setup.py @@ -25,7 +25,7 @@ class bdist_wheel_tag_name(bdist_wheel): def get_tag(self): abi = 'none' if system == 'Darwin': - oses = 'macosx_10_6_x86_64' + oses = 'macosx_10_6_universal' elif system == 'Windows' and architecture == '32bit': oses = 'win32' elif system == 'Windows' and architecture == '64bit':