From 029921aae4d59acf61c6f7527dbd2af2880d6286 Mon Sep 17 00:00:00 2001 From: Bastian Bechtold Date: Wed, 23 Feb 2022 09:18:14 +0100 Subject: [PATCH] fixes setup.py for macOS --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2cc58f9..e023b7e 100644 --- a/setup.py +++ b/setup.py @@ -60,9 +60,9 @@ def get_tag(self): pythons = 'py2.py3' if platform == 'darwin': if architecture0 == 'x86_64': - oses = 'macosx-10.x-x86_64' + oses = 'macosx_10_6_intel' else: - oses = 'macosx-10.x-arm64' + oses = 'macosx_10_6_arm64' elif platform == 'win32': if architecture0 == '32bit': oses = 'win32'