Skip to content

Commit

Permalink
fixes setup.py for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
bastibe committed Feb 23, 2022
1 parent ad56e12 commit 029921a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 029921a

Please sign in to comment.