Skip to content

Commit

Permalink
fix OS tags for macOS
Browse files Browse the repository at this point in the history
apparently, multi-OS tags are no longer allowed.
  • Loading branch information
Bastian Bechtold committed Feb 6, 2023
1 parent b8d1e3d commit cb9d799
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 @@ -62,9 +62,9 @@ def get_tag(self):
pythons = 'py2.py3'
if platform == 'darwin':
if architecture0 == 'x86_64':
oses = 'macosx_10_9_x86_64.macosx_11_0_x86_64'
oses = 'macosx_10_9_x86_64'
else:
oses = 'macosx_10_9_arm64.macosx_11_0_arm64'
oses = 'macosx_11_0_arm64'
elif platform == 'win32':
if architecture0 == '32bit':
oses = 'win32'
Expand Down

0 comments on commit cb9d799

Please sign in to comment.